summaryrefslogtreecommitdiff
path: root/o3tl/README
blob: 7900e70171d0b7ce3f57d3cee0a1c389938b916e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Very basic template functionality, a bit like boost or stl, but specific to LibO

o3tl stands for "OOo [o3, get it?] template library"

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/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/functional.hxx]
Some more templates, leftovers in spirit of STLport's old functional
header that are not part of the C++ standard (STLport has been
replaced by direct use of the C++ STL in LibreOffice).
f7385781f45 (diff)
fdo#48969: switch units in Converter::convertDouble
The factor here is used to divide, so the parameters have to be switched; this has always been broken but probably before 3ca2bef76886450058d1667703aeafe4c2e456c3 nothing called this. This also reverts 7bf1fa3757133f12cf6ca624f8cee6ba5363e7d8 because that was a workaround for the problem in the wrong place.