Ignore:
Timestamp:
08/25/09 13:04:05 (16 years ago)
Author:
Eric.Larour
Message:

Model and FemModel are now classes in their own right.
This changes the cores quite a bit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/io/io.h

    r1844 r1881  
    88#include "../objects/NodeSets.h"
    99#include "../DataSet/DataSet.h"
     10#include "../include/types.h"
    1011
    11 /*Define abstract type for I/O: */
    12 #ifdef _SERIAL_
    13 #include <mex.h>
    14 typedef const mxArray* ConstDataHandle;  //serially, we are reading data from a matlab array.
    15 typedef mxArray* DataHandle; 
    16 #else
    17 typedef FILE* ConstDataHandle; //in parallel, we are reading data from a file.
    18 typedef FILE* DataHandle;
    19 #endif
    20 
     12class DataSet;
    2113
    2214void FetchData(void** pdata,int* pM,int* pN,ConstDataHandle data_handle,char* data_type,char* sub_data_type);
     
    4537/*File I/O: */
    4638FILE* pfopen(char* filename,char* format);
    47 void* pfclose(FILE* fid,char* filename);
     39void  pfclose(FILE* fid,char* filename);
    4840
    4941#endif  /* _IMDB_H */
Note: See TracChangeset for help on using the changeset viewer.