mcu_hi3321_watch/application/wearable/nativeapp/nativeui/uisample/include/UISampleModel.h
2025-05-26 20:15:20 +08:00

30 lines
620 B
C++

/*
* Copyright (c) CompanyNameMagicTag 2021-2021. All rights reserved.
* Description: SettingModel.h
* Author:
* Create: 2021-11-23
*/
#ifndef UISAMPLE_MODEL_H
#define UISAMPLE_MODEL_H
#include <cstdint>
#include <map>
#include "AppViewIDs.h"
#include "UiConfig.h"
#include "UISamplePresenter.h"
namespace OHOS {
class UISampleModel {
public:
static UISampleModel &GetInstance(void);
private:
UISampleModel();
UISampleModel(const UISampleModel &);
UISampleModel &operator=(const UISampleModel &);
virtual ~UISampleModel();
};
}
#endif // UISAMPLE_MODEL_H