Changeset 14916


Ignore:
Timestamp:
05/05/13 21:32:30 (12 years ago)
Author:
Eric.Larour
Message:

CHG: moved typedefs to shared/Numerics/constants, further depleted the include.h header file.

Location:
issm/trunk-jpl/src/c
Files:
7 edited
1 moved

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/Makefile.am

    r14915 r14916  
    2121core_sources = ./issm.h\
    2222                                        ./issm-binding.h\
    23                                         ./include/typedefs.h\
    2423                                        ./include/include.h\
    2524                                        ./classes/classes.h\
     
    184183                                        ./shared/Numerics/numerics.h\
    185184                                        ./shared/Numerics/types.h\
     185                                        ./shared/Numerics/constants.h\
    186186                                        ./shared/Numerics/Verbosity.h\
    187187                                        ./shared/Numerics/Verbosity.cpp\
  • issm/trunk-jpl/src/c/classes/DofIndexing.cpp

    r14915 r14916  
    1313#include "./DofIndexing.h"
    1414#include "../shared/Numerics/types.h"
    15 #include "../include/typedefs.h"
     15#include "../shared/Numerics/constants.h"
    1616#include "../io/Print/Print.h"
    1717#include "../shared/Exceptions/exceptions.h"
  • issm/trunk-jpl/src/c/classes/gauss/GaussPenta.cpp

    r14914 r14916  
    66#include "./GaussTria.h"
    77#include "../../io/Print/Print.h"
    8 #include "../../include/typedefs.h"
    98#include "../../shared/Exceptions/exceptions.h"
    109#include "../../shared/MemOps/MemOps.h"
    1110#include "../../shared/Numerics/GaussPoints.h"
     11#include "../../shared/Numerics/constants.h"
    1212
    1313/*GaussPenta constructors and destructors:*/
  • issm/trunk-jpl/src/c/classes/gauss/GaussTria.cpp

    r14914 r14916  
    88#include "../../shared/MemOps/MemOps.h"
    99#include "../../shared/Numerics/GaussPoints.h"
    10 #include "../../include/typedefs.h"
     10#include "../../shared/Numerics/constants.h"
    1111
    1212/*GaussTria constructors and destructors:*/
  • issm/trunk-jpl/src/c/classes/objects/Segment.h

    r13414 r14916  
    99/*{{{*/
    1010#include "./Object.h"
     11#include "../../shared/Numerics/constants.h"
    1112/*}}}*/
    1213
  • issm/trunk-jpl/src/c/include/include.h

    r14915 r14916  
    66#define  _INCLUDEGLOBAL_H_
    77
    8 #include "./typedefs.h"
    9 
    108#endif //ifndef _INCLUDE_H_
  • issm/trunk-jpl/src/c/shared/Numerics/GaussPoints.cpp

    r14904 r14916  
    55#include "../MemOps/MemOps.h"
    66#include "../Exceptions/exceptions.h"
     7#include "../Numerics/constants.h"
    78#include <math.h>
    89#include <float.h>
  • issm/trunk-jpl/src/c/shared/Numerics/constants.h

    r14913 r14916  
    1 /*!\file: typedefs.h
    2  * \brief prototypes for typedefs.h
     1/*!\file: constants.h
     2 * \brief prototypes for constants.h
    33 */
    44
    5 #ifndef _ISSMTYPEDEFS_H_
    6 #define  _ISSMTYPEDEFS_H_
     5#ifndef _ISSM_CONSTANTS_H_
     6#define _ISSM_CONSTANTS_H_
    77
    88#define UNDEF -9999
Note: See TracChangeset for help on using the changeset viewer.