13 lines
157 B
C
13 lines
157 B
C
#ifndef GRDECL_H
|
|
#define GRDECL_H
|
|
|
|
struct grdecl{
|
|
int dims[3];
|
|
const double *coord;
|
|
const double *zcorn;
|
|
const int *actnum;
|
|
};
|
|
|
|
|
|
#endif
|