source:
GTP/trunk/Lib/Illum/IBRBillboardCloudTrees/OGRE/include/BBC/BBCXmlSerializer.h
@
721
Revision 721, 425 bytes checked in by igarcia, 19 years ago (diff) |
---|
Line | |
---|---|
1 | #ifndef _BBCXMLSERIALIZER_H |
2 | #define _BBCXMLSERIALIZER_H |
3 | |
4 | #include <BBCPrerequisites.h> |
5 | |
6 | namespace BBC { |
7 | |
8 | class _BBCExport XmlSerializer |
9 | { |
10 | public: |
11 | XmlSerializer(); |
12 | |
13 | virtual ~XmlSerializer(); |
14 | |
15 | protected: |
16 | Ogre::String mFilename; |
17 | |
18 | TiXmlDocument *mFile; |
19 | |
20 | bool mLoaded; |
21 | |
22 | public: |
23 | TiXmlDocument* load(Ogre::String filename); |
24 | |
25 | void save(); |
26 | |
27 | TiXmlDocument* create(Ogre::String filename); |
28 | }; |
29 | |
30 | } |
31 | #endif |
Note: See TracBrowser
for help on using the repository browser.