13 lines
189 B
C
13 lines
189 B
C
|
#ifndef APP_H
|
||
|
#define APP_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include "interface/iStompObserver.h"
|
||
|
|
||
|
class App : public QObject, public interface::iStompObserver {
|
||
|
public:
|
||
|
App();
|
||
|
};
|
||
|
|
||
|
#endif // APP_H
|