NerfUS / TargetManager

Dependents:   TargetManagerManualTest NerfUSTarget

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NerfusTickerInterface.hpp Source File

NerfusTickerInterface.hpp

00001 #ifndef NERFUS_TICKER_INTERFACE_HPP
00002 #define NERFUS_TICKER_INTERFACE_HPP
00003 
00004 class NerfusTickerInterface
00005 {
00006     public:
00007         virtual void start(int timeout_ms) = 0;
00008         virtual void stop() = 0;
00009         virtual int get_time_ms() = 0;
00010 };
00011 
00012 #endif