mirror of
https://gitflic.ru/project/astankevich/mtpview.git
synced 2024-11-23 15:08:23 +01:00
15 lines
173 B
C++
15 lines
173 B
C++
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#include <Application.h>
|
|
|
|
class App : public BApplication
|
|
{
|
|
public:
|
|
App(void);
|
|
void AppActivated(bool active);
|
|
void ReadyToRun();
|
|
};
|
|
|
|
#endif
|