aboutsummaryrefslogtreecommitdiff
path: root/qt/mysql/core/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-04-07 12:54:04 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:52:23 +0200
commit26f3245189b3f5d4a96587953ac1d33f45465f1d (patch)
tree3e5d0d7c6bad9213df99682ac415efaea8a55603 /qt/mysql/core/test.hxx
parent75f8ef2dcddea1260a31491c97a26d30a18fce6c (diff)
Add qt/basic and qt/date-time MySQL tests
Diffstat (limited to 'qt/mysql/core/test.hxx')
-rw-r--r--qt/mysql/core/test.hxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/qt/mysql/core/test.hxx b/qt/mysql/core/test.hxx
deleted file mode 100644
index cc8e02d..0000000
--- a/qt/mysql/core/test.hxx
+++ /dev/null
@@ -1,40 +0,0 @@
-// file : qt/mysql/core/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>
-#include <QDateTime>
-
-#pragma db object
-struct time_punchcard
-{
- #pragma db id auto
- unsigned long id;
-
- QDateTime date_time;
-};
-
-#pragma db object
-struct person
-{
- bool
- operator== (const person& x) const
- {
- return name == x.name &&
- date_of_birth == x.date_of_birth &&
- time_of_birth == x.time_of_birth;
- }
-
- #pragma db id
- QString name;
-
- #pragma db type("DATE NOT NULL")
- QDate date_of_birth;
- QTime time_of_birth;
-};
-
-#endif // TEST_HXX