Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef FEDM_XMLPARSER_FEDM_READER_H
00032 #define FEDM_XMLPARSER_FEDM_READER_H
00033
00034
00035
00036
00037
00038 #include "FEDM_XmlParser_IReader.h"
00039 #include "FedmIscCore.h"
00040
00041
00042
00043
00044
00045
00046 class FEDM_XmlParser_FedmReader : public FEDM_XmlParser_Reader, public FEDM_XMLBase
00047 {
00048 public:
00049 FEDM_XmlParser_FedmReader(void);
00050 virtual ~FEDM_XmlParser_FedmReader(void);
00051
00052
00053
00054 virtual int OpenDoc(char* sFileName);
00055 virtual int CloseDoc();
00056 virtual int LoadDoc();
00057 virtual int LoadDoc(const char* szOemRootTag);
00058 virtual int LoadStream(wstring sXmlStream);
00059
00060 virtual void DeleteXmlTree();
00061 virtual int AddTagItem(FEDM_XML_TREEITEM* pParent, FEDM_XML_TREEITEM* pChild);
00062
00063 virtual FEDM_XML_TREEITEM* FindTag( wstring sTag,
00064 unsigned int uiTagLevel,
00065 bool bNext=false);
00066
00067 virtual FEDM_XML_TREEITEM* FindTag( wstring sTag,
00068 wstring sAttribute,
00069 unsigned int uiTagLevel,
00070 bool bNext=false);
00071
00072
00073 protected:
00074 unsigned int m_uiLastTagLevel;
00075 };
00076
00077 #endif // #ifndef FEDM_XMLPARSER_FEDM_READER_H
00078