mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-19 04:24:05 -04:00
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.
15 lines
528 B
C++
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
|