aboutsummaryrefslogtreecommitdiff
path: root/qt/mysql/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-03-23 15:29:00 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:04:37 +0200
commit4b5fde5c42ed096f500a4005fbfba6b198739955 (patch)
treec0ce119d25ad211ce4916332fa87f9a590b8e5cb /qt/mysql/test.hxx
parentd0f0e168cac3d117f64fddcca638a18fc4309ba1 (diff)
Add Qt test boilerplate code
Diffstat (limited to 'qt/mysql/test.hxx')
-rw-r--r--qt/mysql/test.hxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/qt/mysql/test.hxx b/qt/mysql/test.hxx
new file mode 100644
index 0000000..bcbabfa
--- /dev/null
+++ b/qt/mysql/test.hxx
@@ -0,0 +1,26 @@
+// file : qt/mysql/test.hxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <QString>
+
+#pragma db object
+struct person
+{
+ bool
+ operator== (const person& x) const
+ {
+ return id == x.id && name == x.name;
+ }
+
+ #pragma db id auto
+ unsigned long id;
+
+ QString name;
+};
+
+#endif // TEST_HXX