1 #ifndef _6d228d6b_2fdf_4a5e_9809_ccde42293e68_
2 #define _6d228d6b_2fdf_4a5e_9809_ccde42293e68_
3 
4 #include <MyGUI.h>
5 
6 namespace tools
7 {
8 	struct SkinInfo
9 	{
SkinInfoSkinInfo10 		SkinInfo(const std::string& _widget_skin, const std::string& _widget_type, const std::string& _widget_button_name) :
11 			widget_skin(_widget_skin),
12 			widget_type(_widget_type),
13 			widget_button_name(_widget_button_name)
14 		{
15 		}
16 
17 		std::string widget_skin;
18 		std::string widget_type;
19 		std::string widget_button_name;
20 	};
21 
22 	typedef std::vector<SkinInfo> VectorSkinInfo;
23 	typedef std::map<std::string, VectorSkinInfo> SkinGroups;
24 
25 }
26 
27 #endif
28