Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: FYPFinalProgram FYPFinalizeProgram KEYS SaveKeypad ... more
Revision 2:56e309e76c19, committed 2011-01-18
- 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 |
--- 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.
--- 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: