XMLLoader.h 423 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include <map>
  3. #include <string.h>
  4. #include "AutoFunc.h"
  5. using namespace std;
  6. class XMLLoader
  7. {
  8. string m_filename;
  9. BOOL GetWindowObject_Inside(ResDataObject &WindowRoot, WindowObject &Obj, string pName, INT zOrder);
  10. public:
  11. XMLLoader(void);
  12. virtual ~XMLLoader(void);
  13. BOOL LoadFile(string &filename);
  14. BOOL GetCommonPart(string &pName,INT &zOrder);
  15. BOOL GetWindowObject(WindowObject &mainObj);
  16. };