22 lines
381 B
C++
22 lines
381 B
C++
/*
|
|
* Copyright (c) CompanyNameMagicTag 2021-2021. All rights reserved.
|
|
* Description: SettingItem.h
|
|
* Author:
|
|
* Create: 2021-11-23
|
|
*/
|
|
|
|
#ifndef SETTING_ITEM_H
|
|
#define SETTING_ITEM_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace OHOS {
|
|
typedef struct {
|
|
AppViewId viewId;
|
|
const char *icon;
|
|
const char *label;
|
|
bool hasSecondMenu;
|
|
bool enableSlideBack;
|
|
} SettingItem;
|
|
}
|
|
#endif |