FPointer - A callback system that allows for 32bit unsigned ints to be passed to and from the callback.

Dependents:   FYPFinalProgram FYPFinalizeProgram KEYS SaveKeypad ... more

Files at this revision

API Documentation at this revision

Comitter:
AjK
Date:
Tue Jan 18 23:09:32 2011 +0000
Parent:
1:d7803001a259
Commit message:
1.2 See ChangeLog.h

Changed in this revision

ChangeLog.h Show annotated file Show diff for this revision Revisions of this file
FPointer.h Show annotated file Show diff for this revision Revisions of this file
diff -r d7803001a259 -r 56e309e76c19 ChangeLog.h
--- a/ChangeLog.h	Tue Jan 18 22:40:19 2011 +0000
+++ b/ChangeLog.h	Tue Jan 18 23:09:32 2011 +0000
@@ -19,6 +19,9 @@
     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     THE SOFTWARE.
 
+    1.2     18/Jan/2011
+            Added some additional documentation.
+            
     1.1     18/Jan/2011
             Fixed the date in the copyright.
             Fixed some typos.
diff -r d7803001a259 -r 56e309e76c19 FPointer.h
--- a/FPointer.h	Tue Jan 18 22:40:19 2011 +0000
+++ b/FPointer.h	Tue Jan 18 23:09:32 2011 +0000
@@ -70,8 +70,10 @@
     //! C callback function pointer.
     uint32_t (*c_callback)(uint32_t); 
     
-    //! C++ callback object/method pointer.
+    //! C++ callback object/method pointer (the object part).
     FPointerDummy  *obj_callback;
+    
+    //! C++ callback object/method pointer (the method part).
     uint32_t (FPointerDummy::*method_callback)(uint32_t);
 
 public: