aboutsummaryrefslogtreecommitdiff
path: root/qt/common/containers/basics
AgeCommit message (Collapse)AuthorFilesLines
2013-06-13Handle --database option directly in automake and VC++ projectsBoris Kolpackov1-4/+4
2013-06-03Use database name in options and driver files (build part)Boris Kolpackov1-1/+1
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing.
2013-02-09Update copyright yearBoris Kolpackov3-3/+3
2013-02-07Add Qt5 VC project/solution filesBoris Kolpackov1-5/+10
2013-02-05Add support for change-tracking containersBoris Kolpackov4-0/+921
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.