f670ca05dd608c9d5b0300ca1dc493f6ffd8afa1
Stefan Schuermans first version, plays videos...

Stefan Schuermans authored 13 years ago

src/noarch/TimeCallee.h  1) /* Blinker
Stefan Schuermans update copyright years

Stefan Schuermans authored 10 years ago

src/noarch/TimeCallee.h  2)    Copyright 2011-2014 Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans first version, plays videos...

Stefan Schuermans authored 13 years ago

src/noarch/TimeCallee.h  3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
src/noarch/TimeCallee.h  4)    a blinkenarea.org project */
src/noarch/TimeCallee.h  5) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

src/noarch/TimeCallee.h  6) #ifndef BLINKER_TIMECALLEE_H
src/noarch/TimeCallee.h  7) #define BLINKER_TIMECALLEE_H
Stefan Schuermans first version, plays videos...

Stefan Schuermans authored 13 years ago

src/noarch/TimeCallee.h  8) 
src/noarch/TimeCallee.h  9) namespace Blinker {
src/noarch/TimeCallee.h 10) 
src/noarch/TimeCallee.h 11) /// time callee interface (i.e. called at a certain time)
src/noarch/TimeCallee.h 12) class TimeCallee
src/noarch/TimeCallee.h 13) {
src/noarch/TimeCallee.h 14) public:
src/noarch/TimeCallee.h 15)   /// constructor
src/noarch/TimeCallee.h 16)   TimeCallee();
src/noarch/TimeCallee.h 17) 
src/noarch/TimeCallee.h 18)   /// destructor
src/noarch/TimeCallee.h 19)   virtual ~TimeCallee();
src/noarch/TimeCallee.h 20) 
src/noarch/TimeCallee.h 21) public:
Stefan Schuermans fixed comment typo

Stefan Schuermans authored 12 years ago

src/noarch/TimeCallee.h 22)   /// callback when requested time reached
Stefan Schuermans first version, plays videos...

Stefan Schuermans authored 13 years ago

src/noarch/TimeCallee.h 23)   virtual void timeCall() = 0;
src/noarch/TimeCallee.h 24) }; // class TimeCallee
src/noarch/TimeCallee.h 25) 
src/noarch/TimeCallee.h 26) } // namespace Blinker
src/noarch/TimeCallee.h 27) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

src/noarch/TimeCallee.h 28) #endif // #ifndef BLINKER_TIMECALLEE_H