summaryrefslogtreecommitdiff
path: root/libopie2/opiedb/osqltable.h
Side-by-side diff
Diffstat (limited to 'libopie2/opiedb/osqltable.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiedb/osqltable.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libopie2/opiedb/osqltable.h b/libopie2/opiedb/osqltable.h
index 87f7e74..86c30dd 100644
--- a/libopie2/opiedb/osqltable.h
+++ b/libopie2/opiedb/osqltable.h
@@ -2,12 +2,14 @@
#define OSQL_TABLE_H
#include <qstring.h>
#include <qvaluelist.h>
#include <qvariant.h>
+namespace Opie {
+namespace DB {
/**
* OSQLTableItem saves one column of a complete
* table
*/
class OSQLTableItem {
public:
@@ -87,9 +89,14 @@ public:
QString tableName()const;
private:
QString m_table;
OSQLTableItem::ValueList m_list;
+ class Private;
+ Private *d;
};
+}
+}
+
#endif