NerfUS / TargetManager

Dependents:   TargetManagerManualTest NerfUSTarget

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NerfusCallbackInterface.hpp Source File

NerfusCallbackInterface.hpp

00001 #ifndef NERFUS_CALLBACK_INTERFACE_HPP
00002 #define NERFUS_CALLBACK_INTERFACE_HPP
00003 
00004 class NerfusCallbackInterface
00005 {
00006     public:
00007         virtual void call() = 0;
00008 };
00009 
00010 #endif