1 #ifndef ISOTP_MESSAGE_H 2 #define ISOTP_MESSAGE_H 3 4 #include <Qt> 5 #include <QVector> 6 #include <can_structs.h> 7 8 //Now a child class of CANFrame. We just add the ability to track how long it was supposed to be and other 9 //ISOTP related details. But, mostly just CANFrame. 10 class ISOTP_MESSAGE : public CANFrame 11 { 12 public: 13 int reportedLength; 14 int lastSequence; 15 bool isMultiframe; 16 }; 17 18 #endif // ISOTP_MESSAGE_H 19