moduleunit.h 341 B

123456789101112131415161718192021
  1. #ifndef MODULEUNIT_H
  2. #define MODULEUNIT_H
  3. #include <string>
  4. #include <QTextEdit>
  5. class moduleunit
  6. {
  7. public:
  8. moduleunit();
  9. public:
  10. std::string mstrmodulename;
  11. std::string mstrmoduletitle;
  12. QTextEdit * mTE;
  13. qint64 mnLastUpdateTime = 0;
  14. int mnOldFaultClass = -1;
  15. int mnOldFaultNum = -1;
  16. };
  17. #endif // MODULEUNIT_H