init main program object
This commit is contained in:
21
IOT/include/Program.h
Normal file
21
IOT/include/Program.h
Normal file
@ -0,0 +1,21 @@
|
||||
#ifndef PROGRAM_H
|
||||
#define PROGRAM_H
|
||||
|
||||
class Program{
|
||||
public:
|
||||
/**
|
||||
* @brief Construct the maine Program object
|
||||
*
|
||||
*/
|
||||
Program();
|
||||
|
||||
/**
|
||||
* @brief main loop function
|
||||
*
|
||||
*/
|
||||
void loop();
|
||||
|
||||
private:
|
||||
/* data */
|
||||
};
|
||||
#endif
|
Reference in New Issue
Block a user