You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef CUIDEFINE_H
|
|
#define CUIDEFINE_H
|
|
|
|
enum CUI_DATA_TYPE {
|
|
CUI_DATA_TYPE_INT,
|
|
CUI_DATA_TYPE_DOUBLE,
|
|
CUI_DATA_TYPE_STRING,
|
|
CUI_DATA_TYPE_UNKNOW,
|
|
};
|
|
|
|
#endif // CUIDEFINE_H
|