From 17035449a7b7979d462bc4acfb0f9fdf54d88ce4 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sat, 30 May 2009 16:41:39 +0000 Subject: [PATCH] Made the spec more clear. --HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403083 --- dlib/config_reader/config_reader_kernel_abstract.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dlib/config_reader/config_reader_kernel_abstract.h b/dlib/config_reader/config_reader_kernel_abstract.h index 72ad2f858..303fce396 100644 --- a/dlib/config_reader/config_reader_kernel_abstract.h +++ b/dlib/config_reader/config_reader_kernel_abstract.h @@ -114,7 +114,8 @@ namespace dlib /*! GENERAL This exception is thrown if you try to access a key or - block that doesn't exist inside a config reader. + block that doesn't exist inside a config reader. The type + member of this exception will be set to ECONFIG_READER. !*/ public: config_reader_access_error( @@ -262,7 +263,7 @@ namespace dlib with T set to std::string, or std::vector, or dlib::std_vector_c ensures - - #keys == a queue containing all the keys defined in this config_reader's block. + - #keys == a collection containing all the keys defined in this config_reader's block. (i.e. for all strings str in keys it is the case that is_key_defined(str) == true) !*/ @@ -278,7 +279,7 @@ namespace dlib with T set to std::string, or std::vector, or dlib::std_vector_c ensures - - #blocks == a queue containing the names of all the blocks defined in this + - #blocks == a collection containing the names of all the blocks defined in this config_reader's block. (i.e. for all strings str in blocks it is the case that is_block_defined(str) == true) !*/