First cut at NSXMLDocument changes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34371 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2011-12-30 21:40:12 +00:00
parent 0babe2697b
commit 7b7b2a6f9d
10 changed files with 181 additions and 40 deletions

View file

@ -34,6 +34,7 @@ extern "C" {
@class NSData;
@class NSXMLDTD;
@class NSMutableArray;
/*
* Input options
@ -78,7 +79,7 @@ typedef NSUInteger NSXMLDocumentContentKind;
NSString *_encoding;
NSString *_version;
NSXMLDTD *_docType;
NSArray *_children;
NSArray *_children;
BOOL _childrenHaveMutated;
BOOL _standalone;
NSXMLElement *_rootElement;
@ -86,6 +87,10 @@ typedef NSUInteger NSXMLDocumentContentKind;
NSString *_MIMEType;
NSUInteger _fidelityMask;
NSXMLDocumentContentKind _contentKind;
@private
NSMutableArray *_elementStack;
NSData *_xmlData;
#endif
}