77 /** Behaves like loadFromConfigFile, but you can pass directly a file name and a temporary CConfigFile object will be created automatically to load the file.
78 * \sa loadFromConfigFile
79 */
80void loadFromConfigFileName(
81const std::string &config_file,
82const std::string §ion);
83
84 /** This method saves the options to a ".ini"-like file or memory-stored string list.
91THROW_EXCEPTION("The child class does not implement this method.");
92 }
93
94
95 /** Behaves like saveToConfigFile, but you can pass directly a file name and a temporary CConfigFile object will be created automatically to save the file.
96 * \sa saveToConfigFile, loadFromConfigFileName
97 */
98void saveToConfigFileName(
99const std::string &config_file,
100const std::string §ion);
101
102 /** This method must display clearly all the contents of the structure in textual form, sending it to a CStream.
103 */
104void dumpToConsole() const;
105
106 /** This method must display clearly all the contents of the structure in textual form, sending it to a CStream.