summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-03-25 14:24:29 +0000
committerOliver Bolte <obo@openoffice.org>2008-03-25 14:24:29 +0000
commit4b2b50eb5f6c35d1b6774de5e4a510e0a4aa0d2c (patch)
tree43d1a1317da1651a68c24730867bd478d604f4dc /xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx
parent6b2679ea7d720018bdd4dfa78485fc57179ef5ca (diff)
INTEGRATION: CWS ucbfixes06 (1.1.2); FILE ADDED
2008/01/21 15:30:22 kso 1.1.2.1: #i85425# - cleanup of CVS module.
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx b/xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx
new file mode 100644
index 000000000000..502fe162e54c
--- /dev/null
+++ b/xmlhelp/source/cxxhelp/provider/resultsetfactory.hxx
@@ -0,0 +1,27 @@
+#ifndef _RESULTSETFACTORY_HXX
+#define _RESULTSETFACTORY_HXX
+
+
+#include "resultsetbase.hxx"
+
+
+namespace chelp {
+
+ class ResultSetBase;
+
+ class ResultSetFactory
+ {
+ public:
+
+ virtual ~ResultSetFactory() { };
+
+ virtual ResultSetBase* createResultSet() = 0;
+ };
+
+
+
+}
+
+
+
+#endif