/* */ #ifndef _D_SIMPLE_BT_MESSAGE_H_ #define _D_SIMPLE_BT_MESSAGE_H_ #include "AbstractBtMessage.h" class SimpleBtMessage : public AbstractBtMessage { private: int32_t leftDataLength; public: SimpleBtMessage(); virtual ~SimpleBtMessage(); virtual void send(); virtual const unsigned char* getMessage() = 0; virtual int32_t getMessageLength() = 0; virtual void onSendComplete() {}; virtual bool sendPredicate() const { return true; }; }; #endif // _D_SIMPLE_BT_MESSAGE_H_