ES-DE/es-core/src/HelpPrompt.h

16 lines
302 B
C
Raw Normal View History

//
// HelpPrompt.h
//
// Definition of the pair used by help prompts to display a button and its mapped function.
//
2017-11-01 22:21:10 +00:00
#pragma once
#ifndef ES_CORE_HELP_PROMPT_H
#define ES_CORE_HELP_PROMPT_H
#include <string>
typedef std::pair<std::string, std::string> HelpPrompt;
#endif // ES_CORE_HELP_PROMPT_H