#ifndef __COMMANDS_HPP #define __COMMANDS_HPP #pragma once #include #include #include using namespace std; namespace cellar { namespace commands { typedef void (*CommandFunction)(int, char*[]); extern map command_map; bool add_command(string, CommandFunction); vector list_commands(); } } #endif // __COMMANDS_HPP