summaryrefslogtreecommitdiff
path: root/plugins/Quotes/IHTMLEngine.h
blob: 8fe54d5ec537091b384df349a86bad1042f71b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __85dbfa97_919b_4776_919c_7410a1c3d787_HTMLEngine_h__
#define __85dbfa97_919b_4776_919c_7410a1c3d787_HTMLEngine_h__

class IHTMLParser;

class IHTMLEngine
{
public:
	typedef boost::shared_ptr<IHTMLParser> THTMLParserPtr;

public:
	IHTMLEngine(void){}
	virtual ~IHTMLEngine(){}

	virtual THTMLParserPtr GetParserPtr()const = 0;
};

#endif //__85dbfa97_919b_4776_919c_7410a1c3d787_HTMLEngine_h__