Changeset 1441 for trunk/psLib/src/collections
- Timestamp:
- Aug 9, 2004, 1:40:55 PM (22 years ago)
- Location:
- trunk/psLib/src/collections
- Files:
-
- 8 edited
-
psArray.h (modified) (2 diffs)
-
psBitSet.h (modified) (2 diffs)
-
psCompare.h (modified) (2 diffs)
-
psHash.h (modified) (1 diff)
-
psList.h (modified) (2 diffs)
-
psMetadata.h (modified) (1 diff)
-
psScalar.h (modified) (2 diffs)
-
psVector.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psArray.h
r1440 r1441 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-08-09 23: 34:57$14 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-08-09 23:40:55 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 19 20 20 #ifndef PS_ARRAY_H 21 # define PS_ARRAY_H21 #define PS_ARRAY_H 22 22 23 # include "psType.h"24 # include "psCompare.h"23 #include "psType.h" 24 #include "psCompare.h" 25 25 26 26 /// @addtogroup Array -
trunk/psLib/src/collections/psBitSet.h
r1440 r1441 13 13 * @author Ross Harman, MHPCC 14 14 * 15 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $16 * @date $Date: 2004-08-09 23: 34:57$15 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2004-08-09 23:40:55 $ 17 17 * 18 18 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 21 21 #ifndef PSBITSET_H 22 # define PSBITSET_H22 #define PSBITSET_H 23 23 24 24 /// @addtogroup BitSet -
trunk/psLib/src/collections/psCompare.h
r1407 r1441 1 1 #if !defined(PS_COMPARE_H) 2 # define PS_COMPARE_H2 #define PS_COMPARE_H 3 3 4 4 /** @file psCompare.h … … 9 9 * @ingroup Compare 10 10 * 11 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08-0 7 00:06:06$11 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-09 23:40:55 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/collections/psHash.h
r1440 r1441 11 11 * @author George Gusciora, MHPCC 12 12 * 13 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-09 23: 34:57$13 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-09 23:40:55 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 17 17 */ 18 18 #if !defined(PS_HASH_H) 19 # define PS_HASH_H19 #define PS_HASH_H 20 20 21 21 /** \addtogroup HashTable 22 22 * \{ 23 23 */ 24 # include<stdbool.h>24 #include<stdbool.h> 25 25 26 # include "psList.h"26 #include "psList.h" 27 27 28 28 /** A bucket that holds an item of data. */ -
trunk/psLib/src/collections/psList.h
r1440 r1441 1 1 #if !defined(PS_LIST_H) 2 # define PS_LIST_H2 #define PS_LIST_H 3 3 4 4 /** @file psList.h … … 10 10 * @ingroup LinkedList 11 11 * 12 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-08-09 23: 34:57$12 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-08-09 23:40:55 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 16 16 */ 17 17 18 # include <pthread.h> // we need a mutex to make this stuff thread safe.19 # include <stdbool.h> // we use the bool type.18 #include <pthread.h> // we need a mutex to make this stuff thread safe. 19 #include <stdbool.h> // we use the bool type. 20 20 21 # include "psCompare.h"22 # include "psArray.h"21 #include "psCompare.h" 22 #include "psArray.h" 23 23 24 24 /** @addtogroup LinkedList -
trunk/psLib/src/collections/psMetadata.h
r1440 r1441 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-09 23: 34:57$13 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-09 23:40:54 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 17 17 */ 18 18 #ifndef PS_METADATA_H 19 # define PS_METADATA_H20 21 # include <stdarg.h>22 # include <stdio.h>23 # include <fitsio.h>24 25 # include "psHash.h"26 # include "psList.h"19 #define PS_METADATA_H 20 21 #include <stdarg.h> 22 #include <stdio.h> 23 #include <fitsio.h> 24 25 #include "psHash.h" 26 #include "psList.h" 27 27 28 28 /// @addtogroup Metadata -
trunk/psLib/src/collections/psScalar.h
r1440 r1441 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-09 23: 34:57$13 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-09 23:40:55 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 18 18 19 19 #ifndef PS_SCALAR_H 20 # define PS_SCALAR_H20 #define PS_SCALAR_H 21 21 22 # include "psType.h"22 #include "psType.h" 23 23 24 24 /// @addtogroup Scalar -
trunk/psLib/src/collections/psVector.h
r1440 r1441 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-08-09 23: 34:57$14 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-08-09 23:40:55 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 19 20 20 #ifndef PS_VECTOR_H 21 # define PS_VECTOR_H21 #define PS_VECTOR_H 22 22 23 # include "psType.h"23 #include "psType.h" 24 24 25 25 /// @addtogroup Vector
Note:
See TracChangeset
for help on using the changeset viewer.
