This commit is contained in:
Wolfgang Hottgenroth 2019-04-26 13:59:20 +02:00
parent 2441590cb8
commit 749b1653a8
Signed by: wn
GPG Key ID: B586EAFCDF2F65F4
2 changed files with 24 additions and 0 deletions

12
application.cpp-example Normal file
View File

@ -0,0 +1,12 @@
#include "defines.h"
#include "configuration.h"
void setupApplication() {
}
void loopApplication() {
}

12
application.h-example Normal file
View File

@ -0,0 +1,12 @@
#ifndef APPLICATION_H_
#define APPLICATION_H_
void setupApplication();
void loopApplication();
#endif /* APPLICATION_H_ */