30 lines
585 B
C++
30 lines
585 B
C++
/*
|
|
* Copyright (c) CompanyNameMagicTag 2021-2021. All rights reserved.
|
|
* Description: SettingPresenter.h
|
|
* Author:
|
|
* Create: 2021-11-23
|
|
*/
|
|
|
|
#ifndef UISAMPLE_PRESENTER_H
|
|
#define UISAMPLE_PRESENTER_H
|
|
|
|
#include "Presenter.h"
|
|
#include "components/ui_view.h"
|
|
|
|
namespace OHOS {
|
|
class UISampleView;
|
|
class UISampleModel;
|
|
class UISamplePresenter : public Presenter<UISampleView> {
|
|
public:
|
|
UISamplePresenter();
|
|
~UISamplePresenter() override;
|
|
|
|
void OnResume() override;
|
|
void OnPause() override;
|
|
|
|
private:
|
|
UISampleModel *uisampleModel;
|
|
};
|
|
}
|
|
|
|
#endif // UISAMPLE_PRESENTER_H
|