kakoune/src/command_manager.hh

38 lines
804 B
C++
Raw Normal View History

#ifndef command_manager_hh_INCLUDED
#define command_manager_hh_INCLUDED
#include <string>
#include <vector>
#include <unordered_map>
#include <functional>
2011-09-09 20:40:59 +02:00
#include "exception.hh"
namespace Kakoune
{
2011-09-09 20:40:59 +02:00
struct wrong_argument_count : runtime_error
{
2011-09-09 20:40:59 +02:00
wrong_argument_count() : runtime_error("wrong argument count") {}
};
typedef std::vector<std::string> CommandParameters;
typedef std::function<void (const CommandParameters&)> Command;
class CommandManager
{
public:
void execute(const std::string& command_line);
void register_command(const std::string& command_name, Command command);
void register_command(const std::vector<std::string>& command_names, Command command);
private:
std::unordered_map<std::string, Command> m_commands;
};
}
#endif // command_manager_hh_INCLUDED