iit3256.h 513 B

1234567891011121314151617
  1. #ifndef IIT3256_H
  2. #define IIT3256_H
  3. #include "iremote_broker.h"
  4. #include "iremote_object.h"
  5. namespace OHOS{
  6. namespace It3256 {
  7. class IIt3256IO : public IRemoteBroker {
  8. public:
  9. DECLARE_INTERFACE_DESCRIPTOR(u"ohos.IT3256.IIt3256IO");
  10. virtual bool SetAIRangeCode(unsigned char startch, unsigned char stopch, unsigned char *poutbuf) = 0;
  11. virtual bool GetAIRangeCode(unsigned char startch, unsigned char stopch, unsigned char *poutbuf) = 0;
  12. };
  13. } // namespace It3256
  14. }
  15. #endif // IIT3256_H