aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/containers
AgeCommit message (Collapse)AuthorFilesLines
2023-11-16Deal with QVector being alias for QList in Qt 6HEADmasterBoris Kolpackov1-0/+10
2022-12-15Add noexcept to move constructors and move assignment operatorsKaren Arutyunov1-1/+7
2022-02-16Avoid using deprecated APIs in Qt5 and Qt6Boris Kolpackov1-0/+9
Note that support for QLinkedList can be enabled with the ODB_QT_FORCE_QLINKEDLIST macro.
2020-02-13Drop copyright notice from source codeKaren Arutyunov12-12/+0
2019-01-17Update copyright yearKaren Arutyunov12-12/+12
2018-05-24Update copyright yearKaren Arutyunov12-12/+12
2017-01-03Update copyright yearBoris Kolpackov12-12/+12
2015-02-08Use initializer_list only if Qt believe they are supported2.4.0Boris Kolpackov1-2/+4
2015-02-06Update copyrightBoris Kolpackov12-12/+12
2013-08-14Add support for object sectionsBoris Kolpackov2-0/+31
Sections are an optimization mechanism that allows the partitioning of data members of a persistent class into groups that can be separately loaded and/or updated.
2013-02-12Suppress cast warningsBoris Kolpackov1-3/+4
2013-02-11QList::swap(Qlist) is only available since Qt 4.8Boris Kolpackov2-0/+6
2013-02-09Update copyright yearBoris Kolpackov12-12/+12
2013-02-08Adjust function naming to follow Qt styleBoris Kolpackov2-6/+6
2013-02-08Fix typo in function nameBoris Kolpackov1-1/+1
2013-02-05Add support for change-tracking containersBoris Kolpackov12-43/+1110
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.
2012-02-29Use move instead of copy in container traits if C++11 is availableBoris Kolpackov3-5/+5
2012-01-29Update copyright yearBoris Kolpackov6-6/+6
2012-01-29Remove author field from file headerBoris Kolpackov6-6/+0
Too much effort to maintain.
2011-04-27Use QtCore prefix when including Qt headers1.4.0Boris Kolpackov6-8/+8
This appears to be more portable. For example, on Mac OS X with -framework QtCore option include <QString> does not work while including <QtCore/QString> does.
2011-04-22Add qt/container implementationConstantin Michael6-0/+549