00001
00002
00003 #if !defined(XmlNotify_H)
00004 #define XmlNotify_H
00005
00007
00008
00009
00010
00011 class XmlNotify
00012 {
00013 public:
00014
00015
00016 XmlNotify () {}
00017
00018
00019 virtual void foundNode ( string & name, string & attributes ) = 0;
00020 virtual void foundElement ( string & name, string & value, string & attributes ) = 0;
00021
00022 virtual void startElement ( string & name, string & value, string & attributes ) = 0;
00023 virtual void endElement ( string & name, string & value, string & attributes ) = 0;
00024
00025
00026 };
00027
00028 #endif