aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/list.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-05 15:50:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-05 15:50:40 +0200
commite93dcc2ecabee46d31aedf9f4ddc8058956c78ad (patch)
treee4a40ef98f4534cd9f3090b2d69e07f04642dcfb /odb/qt/list.hxx
parent5ddc3cc84883aef3fbb5ab8991ad36c0185404ac (diff)
Add support for change-tracking containers
ODB now supports "smart" ordered containers. Such containers get extra functions for updating and deleting individual elements. Based on this functionality implement two change-tracking containers: odb::vector (equivalent to std::vector) and QOdbList (equivalent to QList). New tests: common/container/change-tracking and qt/common/container/change- tracking.
Diffstat (limited to 'odb/qt/list.hxx')
-rw-r--r--odb/qt/list.hxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/odb/qt/list.hxx b/odb/qt/list.hxx
new file mode 100644
index 0000000..fa6ed28
--- /dev/null
+++ b/odb/qt/list.hxx
@@ -0,0 +1,10 @@
+// file : odb/qt/list.hxx
+// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_QT_LIST_HXX
+#define ODB_QT_LIST_HXX
+
+#include <odb/qt/containers/list.hxx>
+
+#endif // ODB_QT_LIST_HXX