| 1234567891011121314151617181920212223 |
- #ifndef TESTSHMSEND_H
- #define TESTSHMSEND_H
- #include <QThread>
- #include "modulecommext.h"
- #include "testmodulecommext.pb.h"
- #include "testinteriorsend.h"
- class testshmsend : public QThread
- {
- public:
- testshmsend();
- iv::modulecommext::modulecommmsg<iv::testmodulecommext> * mpa;
- private:
- void run();
- };
- #endif // TESTSHMSEND_H
|