IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 7, 2005, 10:27:42 AM (21 years ago)
Author:
desonia
Message:

changed name of p_psMemSetDeallocator/p_psMemGetDeallocator to
psMemSetDeallocator/psMemGetDeallocator.

-rdd

File:
1 edited

Legend:

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

    r3598 r3682  
    1 
    21/** @file  pslib.h
    32*
     
    98*  @author Eric Van Alst, MHPCC
    109*
    11 *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-03-31 23:01:46 $
     10*  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-04-07 20:27:41 $
    1312*
    1413*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1817#define PS_LIB_H
    1918
    20 /******************************************************************************/
    21 
    22 /*  INCLUDE FILES                                                             */
    23 
    24 /******************************************************************************/
    25 
    26 // // System Utilities
    27 
    28 /// @defgroup SysUtils System Utilities
    29 /// @{
    30 
    31 /** @defgroup MemoryManagement Memory Management Utilities
    32  *
    33  *  This is the generic memory management system put inbetween the user's high level code and the OS-level
    34  *  memory allocation routines.  This system adds such features as callback routines for memory error events,
    35  *  tracing capabilities, and reference counting.
    36  *
    37  *  @ingroup SysUtils
    38  */
    39 
    40 #include "fitsio.h"
    41 
    42 #include "psMemory.h"
    43 
    44 /// @defgroup LogTrace Tracing and Logging
    45 /// @ingroup SysUtils
    46 #include "psLogMsg.h"
    47 #include "psTrace.h"
    48 
    49 /// @defgroup ErrorHandling Error Handling
    50 /// @ingroup SysUtils
    51 #include "psAbort.h"
    52 #include "psError.h"
    53 
    54 #include "psString.h"
    55 
    56 /// @defgroup Configure Configure psLib
    57 /// @ingroup SysUtils
    58 #include "psConfigure.h"
    59 
    60 /// @}
    61 
    62 // Collections
    63 /// @defgroup DataContainer Data Containers
    64 /// @{
    65 
    66 #include "psType.h"
    67 
    68 /// @defgroup LinkedList Linked List
    69 /// @ingroup DataContainer
    70 #include "psList.h"
    71 
    72 /// @defgroup HashTable Hash Table
    73 /// @ingroup DataContainer
    74 #include "psHash.h"
    75 
    76 /// @defgroup Scalar Scalar
    77 /// @ingroup DataContainer
    78 #include "psScalar.h"
    79 
    80 /// @defgroup Vector Vector Container
    81 /// @ingroup DataContainer
    82 #include "psVector.h"
    83 
    84 /// @defgroup Array Array Container
    85 /// @ingroup DataContainer
    86 #include "psArray.h"
    87 
    88 /// @defgroup Image Image Container
    89 /// @ingroup DataContainer
    90 /// @{
    91 #include "psImage.h"
    92 #include "psImageExtraction.h"
    93 #include "psImageManip.h"
    94 #include "psImageConvolve.h"
    95 
    96 /// @defgroup ImageIO Image File I/O Functions
    97 /// @ingroup Image
    98 #include "psImageIO.h"
    99 
    100 /// @defgroup ImageStats Image Statistical Functions
    101 /// @ingroup Image
    102 #include "psImageStats.h"
    103 
    104 /// @}
    105 
    106 /// @defgroup BitSet Bit Set Container
    107 /// @ingroup DataContainer
    108 #include "psBitSet.h"
    109 
    110 /// @}
    111 
    112 // Data Manipulation
    113 /// @defgroup DataManip Data Manipulation
    114 /// @{
    115 
    116 /// @defgroup Compare Comparison Functions
    117 /// @ingroup DataManip
    118 #include "psCompare.h"
    119 
    120 /// @defgroup Stats Statistic Functions
    121 /// @ingroup DataManip
    122 #include "psStats.h"
    123 
    124 /// @defgroup Matrix Matrix Operations
    125 /// @ingroup DataManip
    126 #include "psMatrix.h"
    127 
    128 /// @defgroup MatrixArithmetic Matrix Arithmetic Operations
    129 /// @ingroup DataManip
    130 #include "psBinaryOp.h"
    131 #include "psUnaryOp.h"
    132 
    133 #include "psRandom.h"
    134 
    135 /// @defgroup Transform Fourier Transform Operations
    136 /// @ingroup DataManip
    137 #include "psVectorFFT.h"
    138 #include "psImageFFT.h"
    139 
    140 #include "psFunctions.h"
    141 #include "psMinimize.h"
    142 
    143 /// @}
    144 
    145 // Astronomy
    146 /// @defgroup Astronomy Astronomy Functions
    147 /// @{
    148 
    149 /// @defgroup CoordinateTransform Coordinate Functions
    150 /// @ingroup Astronomy
    151 #include "psCoord.h"
    152 
    153 /// @defgroup Photometry Photometry
    154 /// @ingroup Astronomy
    155 #include "psPhotometry.h"
    156 
    157 /// @defgroup Time Time Functions
    158 /// @ingroup Astronomy
    159 #include "psTime.h"
    160 
    161 /// @defgroup Metadata Metadata Functions
    162 /// @ingroup Astronomy
    163 #include "psMetadata.h"
    164 #include "psMetadataIO.h"
    165 
    166 /// @defgroup AstroImage Astrometry Functions
    167 /// @ingroup Astronomy
    168 #include "psAstrometry.h"
    169 #include "psConstants.h"
    170 #include "psDB.h"
    171 
    172 /// @}
    173 
    174 // FileUtils
    175 /// @defgroup FileUtils File Utilities
    176 /// @{
    177 #include "psFits.h"
    178 
    179 /// @defgroup LookupTable Lookup Table
    180 /// @ingroup FileUtils
    181 #include "psLookupTable.h"
    182 
    183 /// @}
     19#include "pslib_strict.h"
    18420
    18521#endif
Note: See TracChangeset for help on using the changeset viewer.