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: TargetManagerManualTest NerfUSTarget
include/NerfusCallbackInterface.hpp@3:70212b0e0939, 2017-03-12 (annotated)
- Committer:
- dupm2216
- Date:
- Sun Mar 12 00:33:25 2017 +0000
- Revision:
- 3:70212b0e0939
Decouple Bumper from TargetManager
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| dupm2216 | 3:70212b0e0939 | 1 | #ifndef NERFUS_CALLBACK_INTERFACE_HPP |
| dupm2216 | 3:70212b0e0939 | 2 | #define NERFUS_CALLBACK_INTERFACE_HPP |
| dupm2216 | 3:70212b0e0939 | 3 | |
| dupm2216 | 3:70212b0e0939 | 4 | class NerfusCallbackInterface |
| dupm2216 | 3:70212b0e0939 | 5 | { |
| dupm2216 | 3:70212b0e0939 | 6 | public: |
| dupm2216 | 3:70212b0e0939 | 7 | virtual void call() = 0; |
| dupm2216 | 3:70212b0e0939 | 8 | }; |
| dupm2216 | 3:70212b0e0939 | 9 | |
| dupm2216 | 3:70212b0e0939 | 10 | #endif |