mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-16 13:00:59 +02:00
22 lines
435 B
C++
22 lines
435 B
C++
#ifndef BOSS_MSG_MANIFESTCOMMAND_HPP
|
|
#define BOSS_MSG_MANIFESTCOMMAND_HPP
|
|
|
|
#include<string>
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::ManifestCommand
|
|
*
|
|
* @brief emitted while handling a Boss::Msg::Manifestation
|
|
* in order to register a command.
|
|
*/
|
|
struct ManifestCommand {
|
|
std::string name;
|
|
std::string usage;
|
|
std::string description;
|
|
bool deprecated;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MSG_MANIFESTCOMMAND_HPP) */
|