Changeset 974 for trunk/psLib/src/pslib.h
- Timestamp:
- Jun 9, 2004, 3:58:06 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/pslib.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/pslib.h
r919 r974 8 8 * @author Eric Van Alst, MHPCC 9 9 * 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 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 22 22 23 23 // 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 24 37 #include "psMemory.h" 38 39 /// @defgroup LogTrace Tracing and Logging 40 /// @ingroup SysUtils 25 41 #include "psLogMsg.h" 26 42 #include "psTrace.h" 43 44 /// @defgroup ErrorHandling Error Handling 45 /// @ingroup SysUtils 27 46 #include "psAbort.h" 28 47 #include "psError.h" 48 29 49 #include "psString.h" 30 50 51 /// @} 52 31 53 // Collections 54 /// @defgroup DataContainer Data Containers 55 /// @{ 56 32 57 #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 38 61 #include "psList.h" 39 62 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 40 84 // Data Manipulation 85 /// @defgroup DataManip Data Manipulation 86 /// @{ 87 88 /// @defgroup Stats Statistic Functions 89 /// @ingroup DataManip 41 90 #include "psStats.h" 91 92 /// @defgroup Matrix Matrix Operations 93 /// @ingroup DataManip 42 94 #include "psMatrix.h" 95 96 /// @defgroup Transform Fourier Transform 97 /// @ingroup DataManip 43 98 #include "psFFT.h" 99 100 /// @defgroup ImageIO Image File I/O 101 /// @ingroup DataManip 44 102 #include "psImageIO.h" 45 103 46 /******************************************************************************/ 47 /* DEFINE STATEMENTS */ 48 /******************************************************************************/ 49 50 // None 51 52 /******************************************************************************/ 53 /* TYPE DEFINITIONS */ 54 /******************************************************************************/ 55 56 // None 57 58 /*****************************************************************************/ 59 /* FUNCTION PROTOTYPES */ 60 /*****************************************************************************/ 104 /// @} 61 105 62 106 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
