IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:40:55 PM (22 years ago)
Author:
desonia
Message:

fixed indent-madness concerning preprocessor directives.

Location:
trunk/psLib/src/collections
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psArray.h

    r1440 r1441  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.14 $ $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 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1919
    2020#ifndef PS_ARRAY_H
    21 #    define PS_ARRAY_H
     21#define PS_ARRAY_H
    2222
    23 #    include "psType.h"
    24 #    include "psCompare.h"
     23#include "psType.h"
     24#include "psCompare.h"
    2525
    2626/// @addtogroup Array
  • trunk/psLib/src/collections/psBitSet.h

    r1440 r1441  
    1313 *  @author Ross Harman, MHPCC
    1414 *
    15  *  @version $Revision: 1.11 $ $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 $
    1717 *
    1818 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020
    2121#ifndef PSBITSET_H
    22 #    define PSBITSET_H
     22#define PSBITSET_H
    2323
    2424/// @addtogroup BitSet
  • trunk/psLib/src/collections/psCompare.h

    r1407 r1441  
    11#if !defined(PS_COMPARE_H)
    2 #    define PS_COMPARE_H
     2#define PS_COMPARE_H
    33
    44/** @file psCompare.h
     
    99 *  @ingroup Compare
    1010 *
    11  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-08-07 00:06:06 $
     11 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-08-09 23:40:55 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/collections/psHash.h

    r1440 r1441  
    1111 *  @author George Gusciora, MHPCC
    1212 *   
    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 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1717 */
    1818#if !defined(PS_HASH_H)
    19 #    define PS_HASH_H
     19#define PS_HASH_H
    2020
    2121/** \addtogroup HashTable
    2222 *  \{
    2323 */
    24 #    include<stdbool.h>
     24#include<stdbool.h>
    2525
    26 #    include "psList.h"
     26#include "psList.h"
    2727
    2828/** A bucket that holds an item of data. */
  • trunk/psLib/src/collections/psList.h

    r1440 r1441  
    11#if !defined(PS_LIST_H)
    2 #    define PS_LIST_H
     2#define PS_LIST_H
    33
    44/** @file psList.h
     
    1010 *  @ingroup LinkedList
    1111 *
    12  *  @version $Revision: 1.12 $ $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 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1616 */
    1717
    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.
    2020
    21 #    include "psCompare.h"
    22 #    include "psArray.h"
     21#include "psCompare.h"
     22#include "psArray.h"
    2323
    2424/** @addtogroup LinkedList
  • trunk/psLib/src/collections/psMetadata.h

    r1440 r1441  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.18 $ $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 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1717*/
    1818#ifndef PS_METADATA_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"
     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"
    2727
    2828/// @addtogroup Metadata
  • trunk/psLib/src/collections/psScalar.h

    r1440 r1441  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    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 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1818
    1919#ifndef PS_SCALAR_H
    20 #    define PS_SCALAR_H
     20#define PS_SCALAR_H
    2121
    22 #    include "psType.h"
     22#include "psType.h"
    2323
    2424/// @addtogroup Scalar
  • trunk/psLib/src/collections/psVector.h

    r1440 r1441  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.18 $ $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 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1919
    2020#ifndef PS_VECTOR_H
    21 #    define PS_VECTOR_H
     21#define PS_VECTOR_H
    2222
    23 #    include "psType.h"
     23#include "psType.h"
    2424
    2525/// @addtogroup Vector
Note: See TracChangeset for help on using the changeset viewer.