Revert "tdf#127471 Remove font width scaling hack"
[LibreOffice.git] / o3tl / README
blob7900e70171d0b7ce3f57d3cee0a1c389938b916e
1 Very basic template functionality, a bit like boost or stl, but specific to LibO
3 o3tl stands for "OOo [o3, get it?] template library"
5 From [http://blog.thebehrens.net/2006/01/15/update-cow_wrapper-is-available-now/]
6 The scope for o3tl is admittedly kind of ambitious, as it should contain "...very basic (template)
7 functionality, comparable to what's provided by boost or stl, but specific to OOo (what comes to mind
8 are e.g. stl adapters for our own data types and UNO, and stuff that could in principle be upstreamed
9 to boost, but isn't as of now)."
11 == Class overview ==
13 [git:o3tl/inc/o3tl/cow_wrapper.hxx]
14 A copy-on-write wrapper.
16 [git:o3tl/inc/o3tl/lazy_update.hxx]
17 This template collects data in input type, and updates the output type with the given update functor,
18 but only if the output is requested. Useful if updating is expensive, or input changes frequently, but
19 output is only comparatively seldom used.
21 [git:o3tl/inc/o3tl/range.hxx]
22 Represents a range of integer or iterator values.
24 [git:o3tl/inc/o3tl/vector_pool.hxx]
25 Simple vector-based memory pool allocator.
27 [git:o3tl/inc/o3tl/functional.hxx]
28 Some more templates, leftovers in spirit of STLport's old functional
29 header that are not part of the C++ standard (STLport has been
30 replaced by direct use of the C++ STL in LibreOffice).