hello,world working. Forgot how hard XML parsing can be.

This commit is contained in:
Lee Thomason
2012-01-11 15:55:05 -08:00
parent ce0763e34b
commit 85403d8935
3 changed files with 25 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ class XMLNode
public:
XMLNode* InsertEndChild( XMLNode* addThis );
void Print( FILE* cfile, int depth ); // prints leading spaces.
virtual void Print( FILE* cfile, int depth );
protected:
XMLNode( XMLDocument* );
@@ -90,6 +90,7 @@ protected:
XMLNode* next;
private:
void PrintSpace( FILE* cfile, int depth ); // prints leading spaces.
};
@@ -100,7 +101,7 @@ public:
XMLComment( XMLDocument* doc );
virtual ~XMLComment();
void Print( FILE* cfile, int depth );
virtual void Print( FILE* cfile, int depth );
protected:
char* ParseDeep( char* );