summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-07-22 22:30:13 +0000
committerSteve Huston <shuston@riverace.com>2002-07-22 22:30:13 +0000
commit73a3dd732b168a77dc5d9a3ed30151c86a530222 (patch)
treeb9b1e382ac41beaab914e65dc274306f8999699f
parent57368ce48d7378aa333b9df705ba89c1df2bf0e4 (diff)
downloadATCD-73a3dd732b168a77dc5d9a3ed30151c86a530222.tar.gz
ChangeLogTag:Mon Jul 22 18:28:48 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--ace/Configuration.h109
3 files changed, 67 insertions, 58 deletions
diff --git a/ChangeLog b/ChangeLog
index aadf70fb963..0e095b664e7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,12 @@
+Mon Jul 22 18:28:48 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Configuration.h: Doxygen fixes.
+
Mon Jul 22 16:57:19 2002 Chris Cleeland <cleeland_c@ociweb.com>
* bin/g++dep: Added a -R option that allows you to specify a
- variable which should be used to generate relative paths if it's
- defined.
+ variable which should be used to generate relative paths if it's
+ defined.
Mon Jul 22 17:45:48 2002 Steve Huston <shuston@riverace.com>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index aadf70fb963..0e095b664e7 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,8 +1,12 @@
+Mon Jul 22 18:28:48 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Configuration.h: Doxygen fixes.
+
Mon Jul 22 16:57:19 2002 Chris Cleeland <cleeland_c@ociweb.com>
* bin/g++dep: Added a -R option that allows you to specify a
- variable which should be used to generate relative paths if it's
- defined.
+ variable which should be used to generate relative paths if it's
+ defined.
Mon Jul 22 17:45:48 2002 Steve Huston <shuston@riverace.com>
diff --git a/ace/Configuration.h b/ace/Configuration.h
index 44b676c4d24..bd2ab7d8342 100644
--- a/ace/Configuration.h
+++ b/ace/Configuration.h
@@ -98,7 +98,7 @@ public:
/// Constructor that initializes to a pointer to a concrete internal key.
/**
- * @arg key The section key to reference. Calls add_ref() with @a key.
+ * @param key The section key to reference. Calls add_ref() with @a key.
*/
ACE_EXPLICIT ACE_Configuration_Section_Key (ACE_Section_Key_Internal *key);
@@ -154,11 +154,12 @@ public:
/**
* Opens a named section in an existing section.
*
- * @arg base Existing section in which to open the named section.
- * @arg sub_section Name of the section to open.
- * @arg create If zero, the named section must exist. If non-zero,
- * the named section will be created if it does not exist.
- * @arg result Reference; receives the section key for the new section.
+ * @param base Existing section in which to open the named section.
+ * @param sub_section Name of the section to open.
+ * @param create If zero, the named section must exist. If non-zero,
+ * the named section will be created if it does not exist.
+ * @param result Reference; receives the section key for the new
+ * section.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -170,10 +171,10 @@ public:
/// Removes a named section.
/**
- * @arg key Section key to remove the named section from.
- * @arg sub_section Name of the section to remove.
- * @arg recursive If non zero, any subkeys below @a sub_section are
- * removed as well.
+ * @param key Section key to remove the named section from.
+ * @param sub_section Name of the section to remove.
+ * @param recursive If non zero, any subkeys below @a sub_section are
+ * removed as well.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -185,12 +186,12 @@ public:
/**
* Enumerates through the values in a section.
*
- * @arg key Section key to iterate through.
- * @arg index Iteration position. Must be zero on the first call to iterate
- * through @a key. Increment @a index by one on each successive
- * call to this method.
- * @arg name Receives the value's name.
- * @arg type Receives the value's data type.
+ * @param key Section key to iterate through.
+ * @param index Iteration position. Must be zero on the first call to
+ * iterate through @a key. Increment @a index by one on each
+ * successive call to this method.
+ * @param name Receives the value's name.
+ * @param type Receives the value's data type.
*
* @note You may not delete or add values while enumerating. If the
* section is modified during enumeration, results are undefined;
@@ -208,11 +209,11 @@ public:
/**
* Enumerates through the subsections in a section.
*
- * @arg key Section key to iterate through.
- * @arg index Iteration position. Must be zero on the first call to iterate
- * through @a key. Increment @a index by one on each successive
- * call to this method.
- * @arg name Receives the subsection's name.
+ * @param key Section key to iterate through.
+ * @param index Iteration position. Must be zero on the first call to
+ * iterate through @a key. Increment @a index by one on each
+ * successive call to this method.
+ * @param name Receives the subsection's name.
*
* @note You may not modify the @a key section while enumerating. If the
* section is modified during enumeration, results are undefined;
@@ -227,10 +228,10 @@ public:
/// Sets a string-typed value.
/**
- * @arg key Configuration section to set the value in.
- * @arg name Name of the configuration value to set. If a value with
- * the specified name exists, it is replaced.
- * @arg value The string to set the configuration value to.
+ * @param key Configuration section to set the value in.
+ * @param name Name of the configuration value to set. If a value with
+ * the specified name exists, it is replaced.
+ * @param value The string to set the configuration value to.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -241,10 +242,10 @@ public:
/// Sets a integer-typed value.
/**
- * @arg key Configuration section to set the value in.
- * @arg name Name of the configuration value to set. If a value with
- * the specified name exists, it is replaced.
- * @arg value The integer to set the configuration value to.
+ * @param key Configuration section to set the value in.
+ * @param name Name of the configuration value to set. If a value with
+ * the specified name exists, it is replaced.
+ * @param value The integer to set the configuration value to.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -255,11 +256,11 @@ public:
/// Sets a binary-typed value.
/**
- * @arg key Configuration section to set the value in.
- * @arg name Name of the configuration value to set. If a value with
- * the specified name exists, it is replaced.
- * @arg data Pointer to the binary data for the value.
- * @arg length Number of bytes for the new value.
+ * @param key Configuration section to set the value in.
+ * @param name Name of the configuration value to set. If a value with
+ * the specified name exists, it is replaced.
+ * @param data Pointer to the binary data for the value.
+ * @param length Number of bytes for the new value.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -271,10 +272,10 @@ public:
/// Gets a string-typed value.
/**
- * @arg key Configuration section to get the value from.
- * @arg name Name of the configuration value to get.
- * @arg value Receives the configuration value if it exists and
- * has type STRING.
+ * @param key Configuration section to get the value from.
+ * @param name Name of the configuration value to get.
+ * @param value Receives the configuration value if it exists and
+ * has type STRING.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -285,10 +286,10 @@ public:
/// Gets an integer-typed value.
/**
- * @arg key Configuration section to get the value from.
- * @arg name Name of the configuration value to get.
- * @arg value Receives the configuration value if it exists and
- * has type INTEGER.
+ * @param key Configuration section to get the value from.
+ * @param name Name of the configuration value to get.
+ * @param value Receives the configuration value if it exists and
+ * has type INTEGER.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -299,13 +300,13 @@ public:
/// Gets a binary-typed value.
/**
- * @arg key Configuration section to get the value from.
- * @arg name Name of the configuration value to get.
- * @arg data Receives a pointer to memory holding the binary data
- * for the value. This method allocates the memory pointed
- * to using operator new[]. The caller is responsible for
- * freeing the memory using operator delete[].
- * @arg length Receives the number of bytes in the value.
+ * @param key Configuration section to get the value from.
+ * @param name Name of the configuration value to get.
+ * @param data Receives a pointer to memory holding the binary data
+ * for the value. This method allocates the memory pointed
+ * to using operator new[]. The caller is responsible for
+ * freeing the memory using operator delete[].
+ * @param length Receives the number of bytes in the value.
*
* @retval 0 for success; caller is responsible for freeing the
* returned memory.
@@ -319,9 +320,9 @@ public:
/**
* Retrieves the type of a named configuration value.
*
- * @arg key Configuration section to look up the name in.
- * @arg name Name of the configuration value to get the type of.
- * @arg type Receives the data type of the named value, if it exists.
+ * @param key Configuration section to look up the name in.
+ * @param name Name of the configuration value to get the type of.
+ * @param type Receives the data type of the named value, if it exists.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.
@@ -332,8 +333,8 @@ public:
/// Removes a named value.
/**
- * @arg key Configuration section to remove the named value from.
- * @arg name Name of the configuration value to remove.
+ * @param key Configuration section to remove the named value from.
+ * @param name Name of the configuration value to remove.
*
* @retval 0 for success.
* @retval -1 for error; ACE_OS::last_error() retrieves error code.