summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx
blob: fa3a2e6a381f9127158967e511afb76c4e0604cd (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
28
29
30
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef _RESULTSETFACTORY_HXX
#define _RESULTSETFACTORY_HXX


#include "resultsetbase.hxx"


namespace chelp {

    class ResultSetBase;

    class ResultSetFactory
    {
    public:

        virtual ~ResultSetFactory() { };

        virtual ResultSetBase* createResultSet() = 0;
    };



}



#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */