Sha256: 25ae2a45ecd899c9b5e3d701f7c38f273ba5d462cfcad84e9b3c5e225ec7c1e2
Contents?: true
Size: 990 Bytes
Versions: 13
Compression:
Stored size: 990 Bytes
Contents
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_CONFIG_READEr_ #define DLIB_CONFIG_READEr_ #include "config_reader/config_reader_kernel_1.h" #include "map.h" #include "tokenizer.h" #include "cmd_line_parser/get_option.h" #include "algs.h" #include "is_kind.h" namespace dlib { typedef config_reader_kernel_1< map<std::string,std::string>::kernel_1b, map<std::string,void*>::kernel_1b, tokenizer::kernel_1a > config_reader; template <> struct is_config_reader<config_reader> { const static bool value = true; }; #ifndef DLIB_ISO_CPP_ONLY typedef config_reader_thread_safe_1< config_reader, map<std::string,void*>::kernel_1b > config_reader_thread_safe; template <> struct is_config_reader<config_reader_thread_safe> { const static bool value = true; }; #endif // DLIB_ISO_CPP_ONLY } #endif // DLIB_CONFIG_READEr_
Version data entries
13 entries across 13 versions & 1 rubygems