Files
MuditaOS/module-apps/application-meditation/windows/Names.hpp
Marcin Smoczyński 486d21af0e [EGD-4288] refactor global data (#959)
Reduce firmware size by refactoring global data defined in public
headers.

Each global variable which require runtime initialization adds
initialization code to every translation unit which includes the header
where the variable is defined and declared.
2020-11-04 18:24:39 +01:00

15 lines
528 B
C++

// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include "AppWindow.hpp"
#include <string>
namespace app::window::name
{
inline constexpr auto meditation_main_window = gui::name::window::main_window;
inline constexpr auto meditation_options = "Options";
inline constexpr auto meditation_preparation = "Preparation";
inline constexpr auto meditation_timer = "Timer";
}; // namespace app::window::name