Object.hpp 133 B

12345678910111213
  1. #ifndef Object_HPP
  2. #define Object_HPP
  3. #include <QObject>
  4. class Object : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. Object();
  9. };
  10. #endif