This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
SDi-STOMP/app.h

13 lines
189 B
C
Raw Normal View History

2023-11-29 10:53:20 +00:00
#ifndef APP_H
#define APP_H
#include <QObject>
#include "interface/iStompObserver.h"
class App : public QObject, public interface::iStompObserver {
public:
App();
};
#endif // APP_H