Files
MuditaOS/module-apps/application-notes/ApplicationNotes.hpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

42 lines
1.2 KiB
C++

/*
* @file ApplicationNotes.hpp
* @author Robert Borzecki (robert.borzecki@mudita.com)
* @date 30 lip 2019
* @brief
* @copyright Copyright (C) 2019 mudita.com
* @details
*/
#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_ */