Clear up doxygen warnings and serialize ScsiCtrl. We probably shouldn't decfine funct...
authorErik Hallnor <ehallnor@umich.edu>
Wed, 29 Oct 2003 21:25:08 +0000 (16:25 -0500)
committerErik Hallnor <ehallnor@umich.edu>
Wed, 29 Oct 2003 21:25:08 +0000 (16:25 -0500)
base/inifile.hh:
    Document findAppend

--HG--
extra : convert_revision : ab5047590b3ca2a9126b75351e4902d300b5b5ad

base/inifile.hh

index 34424eb4b6b1725ed01df0d07a7d94fa0b3255cd..f67fdc7beb1a1611a2ab58c73a999065cf950601 100644 (file)
 
 #include "base/hashmap.hh"
 
-///
-/// @file
-/// Declaration of IniFile object.
-///
+/**
+ * @file
+ * Declaration of IniFile object.
+ * @todo Change comments to match documentation style.
+ */
 
 ///
 /// This class represents the contents of a ".ini" file.
@@ -192,10 +193,18 @@ class IniFile
     /// Find value corresponding to given section and entry names,
     /// following "default" links to other sections where possible.
     /// Value is returned by reference in 'value' param.
-    /// @retval True if found, false if not.
+    /// @return True if found, false if not.
     bool findDefault(const std::string &section, const std::string &entry,
                      std::string &value) const;
 
+    /**
+     * Find a value corresponding to the given section and entry names
+     * following "append" links to other sections where possible.
+     * @param section The section to start with.
+     * @param entry The entry to find.
+     * @param value The value found.
+     * @return True if the entry was found.
+     */
     bool findAppend(const std::string &section, const std::string &entry,
                     std::string &value) const;