office-gobmx/o3tl
Thorsten Behrens fb8dd00d59 Validate cow_wrapper static default pattern.
A bunch of objects use the optimization to assign one single,
unique default object to default-ctored instances, and decide
on whether any given object is in 'default' state by ptr-comparing
against this one unique instance. Simulating that pattern here.

Change-Id: I88f7d8488d81bcf1a01ab6b63121e003b8f0ade9
2013-03-23 20:46:39 +01:00
..
inc/o3tl fdo#60886: _SetGetExpFlds: use the custom operator< 2013-03-02 01:55:10 +01:00
qa Validate cow_wrapper static default pattern. 2013-03-23 20:46:39 +01:00
CppunitTest_o3tl_tests.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00
Makefile
Module_o3tl.mk
Package_inc.mk Create a template container class for sorted vector 2012-07-12 14:12:32 +02:00
README

Very basic template functionality, a bit like boost or stl, but specific to LibO

From [http://blog.thebehrens.net/2006/01/15/update-cow_wrapper-is-available-now/]
The scope for o3tl is admittedly kind of ambitious, as it should contain "...very basic (template)
functionality, comparable to what's provided by boost or stl, but specific to OOo (what comes to mind
are e.g. stl adapters for our own data types and UNO, and stuff that could in principle be upstreamed
to boost, but isn't as of now)."

== Class overview ==

[git:o3tl/inc/o3tl/cow_wrapper.hxx]
A copy-on-write wrapper.

[git:o3tl/inc/o3tl/heap_ptr.hxx]
heap_ptr<> owns an object on the heap, which will be automatically deleted, when ~heap_ptr<>() is called.

[git:o3tl/inc/o3tl/lazy_update.hxx]
This template collects data in input type, and updates the output type with the given update functor,
but only if the output is requested. Useful if updating is expensive, or input changes frequently, but
output is only comparatively seldom used.

[git:o3tl/inc/o3tl/range.hxx]
Represents a range of integer or iterator values.

[git:o3tl/inc/o3tl/vector_pool.hxx]
Simple vector-based memory pool allocator.

[git:o3tl/inc/o3tl/compat_functional.hxx]
Some more templates. Contains also templates from STLport's functional header that are not part of the
C++ standard (STLport has been replaced by direct use of the C++ STL in Libre Office).