| 1234567891011121314151617 |
- #ifndef IIT3256_H
- #define IIT3256_H
- #include "iremote_broker.h"
- #include "iremote_object.h"
- namespace OHOS{
- namespace It3256 {
- class IIt3256IO : public IRemoteBroker {
- public:
- DECLARE_INTERFACE_DESCRIPTOR(u"ohos.IT3256.IIt3256IO");
- virtual bool SetAIRangeCode(unsigned char startch, unsigned char stopch, unsigned char *poutbuf) = 0;
- virtual bool GetAIRangeCode(unsigned char startch, unsigned char stopch, unsigned char *poutbuf) = 0;
- };
- } // namespace It3256
- }
- #endif // IIT3256_H
|