globalconst.h 297 B

12345678910111213141516
  1. #ifndef GLOBALCONST_H
  2. #define GLOBALCONST_H
  3. #include <QObject>
  4. #include <QWidget>
  5. const QString NullUuid = "00000000-0000-0000-0000-00000000000";
  6. class GlobalConst : public QObject {
  7. Q_OBJECT
  8. public:
  9. explicit GlobalConst(QObject* parent = nullptr);
  10. signals:
  11. };
  12. #endif // GLOBALCONST_H