ES-DE/es-core/src/HelpPrompt.h
2024-07-10 18:04:40 +02:00

17 lines
340 B
C++

// SPDX-License-Identifier: MIT
//
// ES-DE Frontend
// HelpPrompt.h
//
// Definition of the pair used by help prompts to display an icon and its mapped function.
//
#ifndef ES_CORE_HELP_PROMPT_H
#define ES_CORE_HELP_PROMPT_H
#include <string>
using HelpPrompt = std::pair<std::string, std::string>;
#endif // ES_CORE_HELP_PROMPT_H