cpptoml
A C++11 parser for TOML
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 Ncpptoml
 Coption
 Clocal_date
 Clocal_time
 Czone_offset
 Clocal_datetime
 Coffset_datetime
 Cfill_guard
 Cis_one_of
 Cis_one_of< T, V >
 Cis_one_of< T, V, Ts... >
 CvalueA concrete TOML value representing the "leaves" of the "tree"
 Cmake_shared_enabler
 Cvalid_value
 Cvalue_traits
 Cvalid_value_or_string_convertible
 Cvalue_traits< T, typename std::enable_if< valid_value_or_string_convertible< T >::value >::type >
 Cvalue_traits< T, typename std::enable_if< !valid_value_or_string_convertible< T >::value &&std::is_floating_point< typename std::decay< T >::type >::value >::type >
 Cvalue_traits< T, typename std::enable_if< !valid_value_or_string_convertible< T >::value &&!std::is_floating_point< typename std::decay< T >::type >::value &&std::is_signed< typename std::decay< T >::type >::value >::type >
 Cvalue_traits< T, typename std::enable_if< !valid_value_or_string_convertible< T >::value &&std::is_unsigned< typename std::decay< T >::type >::value >::type >
 Carray_of_trait
 Carray_of_trait< array >
 CbaseA generic base TOML value used for type erasure
 Carray_exceptionException class for array insertion errors
 Carray
 Ctable_array
 CtableRepresents a TOML keytable
 Cparse_exceptionException class for all TOML parsing errors
 CconsumerHelper object for consuming expected characters
 CparserThe parser class
 Cvalue_accept
 Cvalue_accept<>
 Cvalue_accept< T, Ts... >
 Ctoml_writerWriter that can be passed to accept() functions of cpptoml objects and will output valid TOML to a stream
 Ctoml_test_writerA visitor for toml objects that writes to an output stream in the JSON format that the toml-test suite expects