IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 9, 2004, 3:58:06 PM (22 years ago)
Author:
desonia
Message:

Added doxygen group tags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/pslib.h

    r919 r974  
    88 *  @author Eric Van Alst, MHPCC
    99 *   
    10  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2004-06-08 19:08:40 $
     10 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-06-10 01:58:06 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2222
    2323// System Utilities
     24
     25/// @defgroup SysUtils System Utilities
     26/// @{
     27
     28/** @defgroup MemoryManagement Memory Management Utilities
     29 *
     30 *  This is the generic memory management system put inbetween the user's high level code and the OS-level
     31 *  memory allocation routines.  This system adds such features as callback routines for memory error events,
     32 *  tracing capabilities, and reference counting.
     33 *
     34 *  @ingroup SysUtils
     35 */
     36
    2437#include "psMemory.h"
     38
     39/// @defgroup LogTrace Tracing and Logging
     40/// @ingroup SysUtils
    2541#include "psLogMsg.h"
    2642#include "psTrace.h"
     43
     44/// @defgroup ErrorHandling Error Handling
     45/// @ingroup SysUtils
    2746#include "psAbort.h"
    2847#include "psError.h"
     48
    2949#include "psString.h"
    3050
     51/// @}
     52
    3153// Collections
     54/// @defgroup DataContainer Data Containers
     55/// @{
     56
    3257#include "psType.h"
    33 #include "psVector.h"
    34 #include "psImage.h"
    35 #include "psBitSet.h"
    36 #include "psSort.h"
    37 #include "psHash.h"
     58
     59/// @defgroup LinkedList Linked List
     60/// @ingroup DataContainer
    3861#include "psList.h"
    3962
     63/// @defgroup HashTable Hash Table
     64/// @ingroup DataContainer
     65#include "psHash.h"
     66
     67/// @defgroup Vector Vector Container
     68/// @ingroup DataContainer
     69#include "psVector.h"
     70
     71/// @defgroup Image Image Container
     72/// @ingroup DataContainer
     73#include "psImage.h"
     74
     75/// @defgroup BitSet Bit Set
     76/// @ingroup DataContainer
     77#include "psBitSet.h"
     78
     79/// @defgroup Sort Sorting Functions
     80/// @ingroup DataContainer
     81#include "psSort.h"
     82/// @}
     83
    4084// Data Manipulation
     85/// @defgroup DataManip Data Manipulation
     86/// @{
     87
     88/// @defgroup Stats Statistic Functions
     89/// @ingroup DataManip
    4190#include "psStats.h"
     91
     92/// @defgroup Matrix Matrix Operations
     93/// @ingroup DataManip
    4294#include "psMatrix.h"
     95
     96/// @defgroup Transform Fourier Transform
     97/// @ingroup DataManip
    4398#include "psFFT.h"
     99
     100/// @defgroup ImageIO Image File I/O
     101/// @ingroup DataManip
    44102#include "psImageIO.h"
    45103
    46 /******************************************************************************/
    47 /*  DEFINE STATEMENTS                                                         */
    48 /******************************************************************************/
    49 
    50 // None
    51 
    52 /******************************************************************************/
    53 /*  TYPE DEFINITIONS                                                          */
    54 /******************************************************************************/
    55 
    56 // None
    57 
    58 /*****************************************************************************/
    59 /* FUNCTION PROTOTYPES                                                       */
    60 /*****************************************************************************/
     104/// @}
    61105
    62106#endif
Note: See TracChangeset for help on using the changeset viewer.