123456789101112131415161718192021 |
- #ifndef MODULEUNIT_H
- #define MODULEUNIT_H
- #include <string>
- #include <QTextEdit>
- class moduleunit
- {
- public:
- moduleunit();
- public:
- std::string mstrmodulename;
- std::string mstrmoduletitle;
- QTextEdit * mTE;
- qint64 mnLastUpdateTime = 0;
- int mnOldFaultClass = -1;
- int mnOldFaultNum = -1;
- };
- #endif // MODULEUNIT_H
|