00001 /* 00002 Copyright 1996-2001 00003 Simon Whiteside 00004 00005 * $Id: ExpatParser.h,v 1.1 2001/10/29 18:18:14 sdw Exp $ 00006 */ 00007 00008 #ifndef skEXPATPARSER_H 00009 #define skEXPATPARSER_H 00010 00011 #include "skString.h" 00012 #include <iostream.h> 00013 #include "skElement.h" 00014 00015 class CLASSEXPORT skExpatParser 00016 { 00017 public: 00018 skElement * parse(istream& in); 00019 skElement * parse(const skString& in); 00020 }; 00021 #endif 00022