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). ro/capgemini/cg-4.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/jurt/JunitTest_connections.mk
AgeCommit message (Collapse)Author
2013-04-22Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks
2013-01-26gbuild: fix silly "expandtabs" in makefile VIM modelinesMichael Stahl
Change-Id: I54d8923ad315e8041fd3904da3a29f1a7a8c8b16
2012-08-17gbuild: register all jarsMichael Stahl
Change-Id: I9f49970e5e06d1afd3fc066a20d1671c93e262fc
2012-04-08gbuild: "use" vs. "add":Michael Stahl
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)