27 lines
322 B
C++
27 lines
322 B
C++
/*
|
|
* mainloop.h
|
|
*
|
|
* Created on: Sep 11, 2019
|
|
* Author: abody
|
|
*/
|
|
|
|
#ifndef MAINLOOP_H_
|
|
#define MAINLOOP_H_
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
void MainLoop();
|
|
|
|
#if defined(__cplusplus)
|
|
class MainLoop {
|
|
MainLoop();
|
|
};
|
|
#endif // __cplusplus
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* MAINLOOP_H_ */
|