You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
370 B
23 lines
370 B
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd.. 2012-2019. All rights reserved.
|
|
* Description:
|
|
* Author:
|
|
* Create:
|
|
*/
|
|
|
|
#ifndef ICUSEX_H
|
|
#define ICUSEX_H
|
|
|
|
#include <utils/RefBase.h>
|
|
|
|
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
|