30 lines
620 B
C++
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
|