aboutsummaryrefslogtreecommitdiff
path: root/qt/mysql/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-03-25 17:52:14 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:04:37 +0200
commit242363e630f2f541bcf1b7133f21ab2730587c4f (patch)
tree93a44a63f5b97d07c52ef3dbfea4fc19f98e0a90 /qt/mysql/test.hxx
parent4b5fde5c42ed096f500a4005fbfba6b198739955 (diff)
Update directory structure for Qt test
Diffstat (limited to 'qt/mysql/test.hxx')
-rw-r--r--qt/mysql/test.hxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/qt/mysql/test.hxx b/qt/mysql/test.hxx
deleted file mode 100644
index bcbabfa..0000000
--- a/qt/mysql/test.hxx
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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