This repository has been archived on 2024-10-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SDi-STOMP/app.h
T
2023-11-29 11:53:20 +01:00

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