1 #ifndef OPENMW_WIDGETS_TAGS_H
2 #define OPENMW_WIDGETS_TAGS_H
3 
4 #include <MyGUI_UString.h>
5 #include <string>
6 #include <map>
7 
8 namespace Gui
9 {
10 
11 /// Try to replace a tag. Returns true on success and writes the result to \a out.
12 bool replaceTag (const MyGUI::UString& tag, MyGUI::UString& out);
13 
14 }
15 
16 #endif
17