/* */ #ifndef _D_BT_MESSAGE_VALIDATOR_H_ #define _D_BT_MESSAGE_VALIDATOR_H_ #include "common.h" #include "BtMessage.h" typedef Strings Errors; class BtMessageValidator { public: virtual ~BtMessageValidator() {} virtual bool validate(Errors& errors) = 0; }; typedef SharedHandle BtMessageValidatorHandle; #endif // _D_BT_MESSAGE_VALIDATOR_H_