00001 00003 #ifndef VARIABLES_HPP_ 00004 #define VARIABLES_HPP_ 00005 00006 #include <map> 00007 #include <string> 00008 00009 typedef std::map<std::string, std::string> variable_map; 00010 extern variable_map global_variables; 00011 00017 std::string expand(std::string str, variable_map const* local_variables = 0); 00018 00019 #endif // VARIABLES_HPP_