Update of /cvsroot/anet/ANet/ANet_Daemon/Common
In directory usw-pr-cvs1:/tmp/cvs-serv21218/ANet/ANet_Daemon/Common
Modified Files:
ANetCommon.h Args.c Args.h Files.h Utilities.h
Log Message:
""
Index: ANetCommon.h
===================================================================
RCS file: /cvsroot/anet/ANet/ANet_Daemon/Common/ANetCommon.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ANetCommon.h 2001/12/18 01:16:29 1.3
--- ANetCommon.h 2001/12/18 01:45:27 1.4
***************
*** 13,23 ****
/*!
\addtogroup common Common
Code commom between the various parts of the ANet Daemon and common throughout its various ports.
- */
-
- /*!
- \addtogroup utils Utilities
- \ingroup common
- Useful stuff, but maybe not essential.
*/
--- 13,19 ----
/*!
\addtogroup common Common
+ \brief Common code between ports.
+
Code commom between the various parts of the ANet Daemon and common throughout its various ports.
*/
Index: Args.c
===================================================================
RCS file: /cvsroot/anet/ANet/ANet_Daemon/Common/Args.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Args.c 2001/12/12 20:05:09 1.2
--- Args.c 2001/12/18 01:45:27 1.3
***************
*** 1,2 ****
--- 1,11 ----
+ /******************************************************************
+ ANet_Daemon/Common/Args.c
+ Argument utilities for the ANet daemon.
+
+ Part of the ANet project.
+
+ Distributed under GPL: http://www.gnu.org/copyleft/gpl.html
+ ******************************************************************/
+
#include "Args.h"
***************
*** 4,7 ****
--- 13,18 ----
\addtogroup argUtils Argument Utilities
\ingroup utils
+ \brief Arguments parser/generator.
+
Here are the argument utilities. They help parse/generate argument
lists in the style of command-line arguments.
***************
*** 11,15 ****
/*!
\file
! \brief Argument utilities.
\author Chyrag
\author Benad
--- 22,26 ----
/*!
\file
! \brief Argument utilities code.
\author Chyrag
\author Benad
Index: Args.h
===================================================================
RCS file: /cvsroot/anet/ANet/ANet_Daemon/Common/Args.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Args.h 2001/12/12 20:05:09 1.2
--- Args.h 2001/12/18 01:45:27 1.3
***************
*** 1,2 ****
--- 1,11 ----
+ /******************************************************************
+ ANet_Daemon/Common/Args.h
+ Argument utilities for the ANet daemon.
+
+ Part of the ANet project.
+
+ Distributed under GPL: http://www.gnu.org/copyleft/gpl.html
+ ******************************************************************/
+
#include <stdio.h>
#include <stdlib.h>
***************
*** 4,9 ****
/*!
\file
! \brief Argument utilities.
\author Chyrag
\author Benad
--- 13,23 ----
/*!
+ \addtogroup argUtils
+ \{
+ */
+
+ /*!
\file
! \brief Argument utilities declarations.
\author Chyrag
\author Benad
***************
*** 12,13 ****
--- 26,29 ----
void MakeArgumentString(int argc, char ** argv, char * outArgs, int argsSize);
int GetArgument(char * inString, char * inArg, char * outVal, int valSize);
+
+ /*! \} */
Index: Files.h
===================================================================
RCS file: /cvsroot/anet/ANet/ANet_Daemon/Common/Files.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Files.h 2001/12/18 01:16:29 1.6
--- Files.h 2001/12/18 01:45:27 1.7
***************
*** 20,23 ****
--- 20,25 ----
\addtogroup files File Management Wrappers
\ingroup common
+ \brief Cross-platform file management wrappers.
+
Here are the File Management Wrappers. They are "wrapper" functions that allow access to file management functions in a cross-platform way.
\{
Index: Utilities.h
===================================================================
RCS file: /cvsroot/anet/ANet/ANet_Daemon/Common/Utilities.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Utilities.h 2001/10/14 23:16:35 1.2
--- Utilities.h 2001/12/18 01:45:27 1.3
***************
*** 12,16 ****
#define ANET_COMMON_UTILITIES
! //Connection status
enum
{
--- 12,28 ----
#define ANET_COMMON_UTILITIES
! /*!
! \addtogroup utils Utilities
! \ingroup common
! \brief Useful stuff, but maybe not essential.
! \{
! */
!
! /*!
! \file
! \brief Useful declarations.
! */
!
! //! Connection status
enum
{
***************
*** 19,20 ****
--- 31,34 ----
kConnectionOnHold = 2
};
+
+ /*! \} */
|