summaryrefslogtreecommitdiff
path: root/libopie2/opiedb/osqlbackend.h
Side-by-side diff
Diffstat (limited to 'libopie2/opiedb/osqlbackend.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiedb/osqlbackend.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libopie2/opiedb/osqlbackend.h b/libopie2/opiedb/osqlbackend.h
index ad879a4..28451b6 100644
--- a/libopie2/opiedb/osqlbackend.h
+++ b/libopie2/opiedb/osqlbackend.h
@@ -3,12 +3,15 @@
#define OSQL_BACKEND_H
#include <qcstring.h>
#include <qstring.h>
#include <qvaluelist.h>
+
+namespace Opie {
+namespace DB {
/**
* OSQLBackEnd represents an available backend
* to the Opie Database Service
* It's used to easily extend OSQL services by
* 3rd party plugins.
* It's used to show
@@ -67,9 +70,14 @@ private:
QString m_name;
QString m_vendor;
QString m_license;
QCString m_lib;
bool m_default :1;
int m_pref;
+ class Private;
+ Private *d;
};
+}
+}
+
#endif