/* * Copyright (c) Hisilicon Technologies Co., Ltd.. 2012-2019. All rights reserved. * Description: * Author: * Create: */ #ifndef ICUSEX_H #define ICUSEX_H #include namespace android { class ICusEx : virtual public RefBase { public: virtual bool cus_set_xxx(int val) = 0; virtual int cus_get_xxx() = 0; }; }; // namespace android #endif