13 lines
123 B
C++
13 lines
123 B
C++
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#include <Application.h>
|
|
|
|
class App : public BApplication
|
|
{
|
|
public:
|
|
App(void);
|
|
};
|
|
|
|
|
|
#endif
|