Difference between revisions of "Used boost libraries"

From KlayGE
Jump to: navigation, search
Line 5: Line 5:
 
*'''Chrono'''
 
*'''Chrono'''
 
*Date Time (Not used directly. No dependency on VC11+)
 
*Date Time (Not used directly. No dependency on VC11+)
*Filesystem (Can be replaced by TR2's on VC11+)
+
*Filesystem (Can be replaced by Filesystem TS's on VC11+)
 
*Program Options (Only used in [[toolset]])
 
*Program Options (Only used in [[toolset]])
 
*'''Regex''' (Only used in [[toolset]])
 
*'''Regex''' (Only used in [[toolset]])
Line 13: Line 13:
 
Header-only Boost libraries:
 
Header-only Boost libraries:
 
*Algorithm/string
 
*Algorithm/string
*Any
+
*Any (Library fundamentals TS)
 
*'''Array'''
 
*'''Array'''
 
*Assert
 
*Assert
Line 23: Line 23:
 
*Functional/Hash
 
*Functional/Hash
 
*'''Integer'''
 
*'''Integer'''
*Lexical Cast
+
*Lexical Cast (Library fundamentals TS)
 
*Lock free
 
*Lock free
 
*'''Member Function'''
 
*'''Member Function'''
 
*'''Move'''
 
*'''Move'''
 
*Operators
 
*Operators
*Optional
+
*Optional (Library fundamentals TS)
 
*'''Random'''
 
*'''Random'''
 
*'''Ref'''
 
*'''Ref'''

Revision as of 22:33, 10 June 2015

Much code in KlayGE depend on Boost. Here's the list of used libraries.

The used Boost libraries that must be built separately:

  • Atomic
  • Chrono
  • Date Time (Not used directly. No dependency on VC11+)
  • Filesystem (Can be replaced by Filesystem TS's on VC11+)
  • Program Options (Only used in toolset)
  • Regex (Only used in toolset)
  • System
  • Thread

Header-only Boost libraries:

  • Algorithm/string
  • Any (Library fundamentals TS)
  • Array
  • Assert
  • Bind
  • Circular Buffer
  • Container/flat_map
  • Foreach
  • Function
  • Functional/Hash
  • Integer
  • Lexical Cast (Library fundamentals TS)
  • Lock free
  • Member Function
  • Move
  • Operators
  • Optional (Library fundamentals TS)
  • Random
  • Ref
  • Signals2
  • Smart Ptr
  • Static Assert
  • Tuple
  • Type Traits
  • Typeof
  • Unordered
  • Utility/checked_delete
  • Utility/noncopyable
  • Utility/result_of

Items marked as bold font can be replaced by features in C++11. Along with the popularize of C++11-supported compiler, those libraries are switched to C++11's. Boost libraries are used only when necessary.