mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-20 04:54:25 -04:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#ifndef MODULE_APPS_APPLICATION_NOTES_APPLICATIONNOTES_HPP_
|
|
#define MODULE_APPS_APPLICATION_NOTES_APPLICATIONNOTES_HPP_
|
|
|
|
#include "NotesModel.hpp"
|
|
#include "Application.hpp"
|
|
|
|
namespace app
|
|
{
|
|
|
|
inline const std::string name_notes = "ApplicationNotes";
|
|
|
|
class ApplicationNotes : public Application
|
|
{
|
|
protected:
|
|
public:
|
|
ApplicationNotes(std::string name = name_notes, std::string parent = "", bool startBackgound = false);
|
|
virtual ~ApplicationNotes();
|
|
sys::Message_t DataReceivedHandler(sys::DataMessage *msgl, sys::ResponseMessage *resp) override;
|
|
sys::ReturnCodes InitHandler() override;
|
|
sys::ReturnCodes DeinitHandler() override;
|
|
|
|
sys::ReturnCodes SwitchPowerModeHandler(const sys::ServicePowerMode mode) override final
|
|
{
|
|
return sys::ReturnCodes::Success;
|
|
}
|
|
|
|
void createUserInterface() override;
|
|
void destroyUserInterface() override;
|
|
};
|
|
|
|
} /* namespace app */
|
|
|
|
#endif /* MODULE_APPS_APPLICATION_NOTES_APPLICATIONNOTES_HPP_ */
|