Update Macros.h

This commit is contained in:
alexey-milovidov 2018-04-20 19:09:43 +03:00
parent c783a69d6b
commit 21a5d2dfde

View File

@ -30,7 +30,10 @@ public:
* level - the level of recursion.
*/
String expand(const String & s, size_t level = 0) const;
Names expand(const Names & s, size_t level = 0) const;
/** Apply expand for the list.
*/
Names expand(const Names & source_names, size_t level = 0) const;
using MacroMap = std::map<String, String>;
const MacroMap getMacroMap() const { return macros; }