IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 1, 2009, 11:43:05 AM (17 years ago)
Author:
eugene
Message:

merging Doxygen templates added by Bill G

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppMerge/src/ppMergeErrorCodes.c.in

    r11259 r21244  
     1/** @file ppMergeErrorCodes.c.in
     2 *
     3 *  @brief
     4 *
     5 *  @ingroup ppMerge
     6 *
     7 *  @author IfA
     8 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-02-01 21:43:05 $
     10 *  Copyright 2009 Institute for Astronomy, University of Hawaii
     11 */
     12
     13#include "pslib.h"
     14#include "ppMergeErrorCodes.h"
     15
    116/*
    217 * The line
     
    520 * will be replaced by values from errorCodes.dat
    621 */
    7 #include "pslib.h"
    8 #include "ppMergeErrorCodes.h"
    9 
    1022void ppMergeErrorRegister(void)
    1123{
     
    1426       { PPMERGE_ERR_${ErrorCode}, "${ErrorDescription}"},
    1527    };
    16     static int nerror = PPMERGE_ERR_NERROR - PPMERGE_ERR_BASE; // number of values in enum
     28    static int nerror = PPMERGE_ERR_NERROR - PPMERGE_ERR_BASE; ///< number of values in enum
    1729
    1830    for (int i = 0; i < nerror; i++) {
     
    2133       *tmp = errors[i];
    2234       psErrorRegister(tmp, 1);
    23        psFree(tmp);                     /* it's on the internal list */
     35       psFree(tmp);                     // it's on the internal list
    2436    }
    2537    nerror = 0;                                 // don't register more than once
Note: See TracChangeset for help on using the changeset viewer.