summaryrefslogtreecommitdiff
path: root/libopie2/opiedb/osqlquery.cpp
Side-by-side diff
Diffstat (limited to 'libopie2/opiedb/osqlquery.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiedb/osqlquery.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/libopie2/opiedb/osqlquery.cpp b/libopie2/opiedb/osqlquery.cpp
new file mode 100644
index 0000000..ecd53f2
--- a/dev/null
+++ b/libopie2/opiedb/osqlquery.cpp
@@ -0,0 +1,17 @@
+
+#include "osqlquery.h"
+
+OSQLQuery::OSQLQuery() {
+}
+OSQLQuery::~OSQLQuery() {
+}
+
+OSQLRawQuery::OSQLRawQuery(const QString& query)
+ : OSQLQuery(), m_query( query ) {
+
+}
+OSQLRawQuery::~OSQLRawQuery() {
+}
+QString OSQLRawQuery::query()const {
+ return m_query;
+}