Files
MuditaOS/module-apps/application-calendar/windows/CalendarMainWindow.cpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

40 lines
865 B
C++

/*
* @file CalendarMainWindow.cpp
* @author Robert Borzecki (robert.borzecki@mudita.com)
* @date 3 cze 2019
* @brief
* @copyright Copyright (C) 2019 mudita.com
* @details
*/
#include "gui/widgets/Window.hpp"
#include "gui/widgets/Label.hpp"
#include "gui/widgets/Item.hpp"
#include "gui/widgets/BoxLayout.hpp"
#include "CalendarMainWindow.hpp"
namespace app
{
CalendarMainWindow::CalendarMainWindow(app::Application *app, std::string name) : AppWindow(app, name)
{
buildInterface();
}
void CalendarMainWindow::rebuild()
{}
void CalendarMainWindow::buildInterface()
{
AppWindow::buildInterface();
}
void CalendarMainWindow::destroyInterface()
{
AppWindow::destroyInterface();
}
CalendarMainWindow::~CalendarMainWindow()
{
destroyInterface();
}
} /* namespace app */