xmlnotify.h

来自「用bcg库编写的java IDE 源码」· C头文件 代码 · 共 34 行

H
34
字号
#if !defined(XmlNotify_H)
#define XmlNotify_H





/////////////////////////////////////////////////////////////////////////////////
// XmlNotify
//
// Purpose:		abstract class used to notify about xml tags found. 

class EDITPADC_CLASS XmlNotify
{
public:


	XmlNotify ()
	{}




	// notify methods
	virtual void foundNode		( string & name, string & attributes ) = 0;
	virtual void foundElement	( string & name, string & value, string & attributes ) = 0;

	virtual void startElement	( string & name, string & value, string & attributes ) = 0;
	virtual void endElement		( string & name, string & value, string & attributes ) = 0;

	
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?