// vim: filetype=cpp : #ifndef __INTERNAL_CORE_HPP #define __INTERNAL_CORE_HPP #pragma once #include #include #include "commands.hpp" using namespace cellar::commands; namespace cellar { namespace config { /*[[[cog import cog with open("src/config/commands.txt") as commandsfile: for line in commandsfile: item = line.strip().split(" ") cog.outl("extern void {0} (int, vector);".format(item[1])) ]]]*/ //[[[end]]] } namespace commands { extern map config_commands(); } } #endif // __INTERNAL_CORE_HPP