clboss/Boss/Msg/ManifestCommand.hpp
2020-09-07 19:05:56 +08:00

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) */