Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-05-24 | Update copyright year | Karen Arutyunov | 1 | -1/+1 | |
2017-01-03 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2016-06-15 | Get rid of C++11 deprecation warnings for auto_ptr, exception specs | Boris Kolpackov | 1 | -11/+12 | |
In particular, std::auto_ptr is no longer mapped in C++11. | |||||
2015-08-14 | Reimplement lazy_weak_ptr lock() to preserve database type | Boris Kolpackov | 1 | -0/+6 | |
Now we initialize the returned lazy_shared_ptr with the same loader function as the one set for weak_ptr. | |||||
2015-02-06 | Update copyright | Boris Kolpackov | 1 | -1/+1 | |
2013-05-21 | Add ability to get underlying eager pointer in weak pointers | Boris Kolpackov | 1 | -0/+25 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-11-29 | Namespace management for static multi-database support | Boris Kolpackov | 1 | -2/+2 | |
Now in libodb the odb::core namespace is split into odb::common (database- independent stuff) and odb::core proper, which imports odb::common. Each database runtime now defines odb::<db>::core namespace which also imports odb::common and adds the database-specific bits. The overall idea is that one can do using namespace odb::<db>::core just like for odb::core. | |||||
2012-10-29 | Add static multi-database support for lazy pointers | Boris Kolpackov | 1 | -42/+42 | |
A lazy pointer must load the object using the static database interface with which it was initialized. | |||||
2012-03-02 | Portability workarounds for incomplete C++11 support in VC++ and old GCC | Boris Kolpackov | 1 | -9/+54 | |
2012-02-29 | Support for C++11 std::unique_ptr as object pointer | Boris Kolpackov | 1 | -16/+144 | |
This includes the odb::lazy_unique_ptr implementation. | |||||
2012-02-28 | Support for C++11 std::shared_ptr/weak_ptr as object pointers | Boris Kolpackov | 1 | -3/+261 | |
This includes odb::lazy_shared_ptr and odb::lazy_weak_ptr implementations. | |||||
2012-01-29 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 1 | -1/+0 | |
Too much effort to maintain. | |||||
2011-04-18 | Fix loaded() function in lazy_ptr to conform to documentation | Boris Kolpackov | 1 | -0/+16 | |
2011-02-18 | Add odb::core namespace to be used in using-directives | Boris Kolpackov | 1 | -0/+6 | |
Port all the examples and tests. | |||||
2011-01-04 | Copyright update | Boris Kolpackov | 1 | -1/+1 | |
2010-12-09 | Add lazy pointer support | Boris Kolpackov | 1 | -0/+198 | |
Built-in support is provided for raw, auto, and tr1 shared/weak pointers. New test: common/lazy-ptr. |