merge the formfield patch from ooo-build
[ooovba.git] / xmlhelp / source / cxxhelp / provider / resultsetfactory.hxx
blob30879508bafd2df05c63e634bd5b69c8e24497e0
1 #ifndef _RESULTSETFACTORY_HXX
2 #define _RESULTSETFACTORY_HXX
5 #include "resultsetbase.hxx"
8 namespace chelp {
10 class ResultSetBase;
12 class ResultSetFactory
14 public:
16 virtual ~ResultSetFactory() { };
18 virtual ResultSetBase* createResultSet() = 0;
27 #endif