assictscalet2000.h 470 B

12345678910111213141516171819
  1. #ifndef ASSICTSCALET2000_H
  2. #define ASSICTSCALET2000_H
  3. #include "serialbasehandle.h"
  4. #include <pqQtlib/serialport/pqassicbrhelp.h>
  5. class AssicTScaleT2000 : public SerialBaseHandle,public PQ::AssicBrHelp
  6. {
  7. public:
  8. AssicTScaleT2000();
  9. ~AssicTScaleT2000();
  10. virtual bool needSend();
  11. virtual QByteArray sendData();
  12. virtual void handle(QByteArray & data);
  13. protected:
  14. virtual void doHandle(const QByteArray & data);
  15. };
  16. #endif // ASSICTSCALET2000_H