create interface

This commit is contained in:
2023-11-29 11:53:20 +01:00
parent e8cb3ab9b9
commit 847393cec3
9 changed files with 148 additions and 1 deletions

12
app.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef APP_H
#define APP_H
#include <QObject>
#include "interface/iStompObserver.h"
class App : public QObject, public interface::iStompObserver {
public:
App();
};
#endif // APP_H