summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx
blob: 502fe162e54ce82c6ce562d8a5704f2c16be962c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef _RESULTSETFACTORY_HXX
#define _RESULTSETFACTORY_HXX


#include "resultsetbase.hxx"


namespace chelp {

    class ResultSetBase;

    class ResultSetFactory
    {
    public:

        virtual ~ResultSetFactory() { };

        virtual ResultSetBase* createResultSet() = 0;
    };



}



#endif