Changeset 5235


Ignore:
Timestamp:
08/13/10 10:49:02 (15 years ago)
Author:
Eric.Larour
Message:

Moved Bamg to BamgMesher

Location:
issm/trunk/src/mex/BamgMesher
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/mex/BamgMesher/BamgMesher.cpp

    r5233 r5235  
    1 /*\file Bamg.c
    2  *\brief: bamg module.
     1/*\file BamgMesher.c
     2 *\brief: mesher that uses the bamg library
    33 */
    4 #include "./Bamg.h"
     4#include "./BamgMesher.h"
    55
    66void mexFunction( int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]){
     
    2121
    2222        /*checks on arguments on the matlab side: */
    23         CheckNumMatlabArguments(nlhs,NLHS,nrhs,NRHS,__FUNCT__,&BamgUsage);
     23        CheckNumMatlabArguments(nlhs,NLHS,nrhs,NRHS,__FUNCT__,&BamgMesherUsage);
    2424
    2525        /*Initialize variables*/
     
    5050}
    5151
    52 void BamgUsage(void){
     52void BamgMeshUsage(void){
    5353        _printf_("\n");
    5454        _printf_("   usage: [bamgmesh,bamggeom]=%s(bamgmesh,bamggeom,bamgoptions);\n",__FUNCT__);
  • issm/trunk/src/mex/BamgMesher/BamgMesher.h

    r5233 r5235  
    11/*
    2         Bamg.h
     2        BamgMesherUsage.h
    33*/
    44
    5 #ifndef _BAMG_H
    6 #define _BAMG_H
     5#ifndef _BAMG_MESHER_H_
     6#define _BAMG_MESHER_H_
    77
    88/* local prototypes: */
    9 void BamgUsage(void);
     9void BamgMesherUsage(void);
    1010
    1111#include "../../c/modules/modules.h"
     
    1414
    1515#undef __FUNCT__
    16 #define __FUNCT__  "Bamg"
     16#define __FUNCT__  "BamgMesher"
    1717   
    1818/* serial input macros: */
     
    3131#define NRHS  3
    3232
    33 #endif  /* _BAMG_H */
     33#endif  /* _BAMG_MESHER_H_ */
    3434
Note: See TracChangeset for help on using the changeset viewer.