Actual source code: vsilo.h
1: /* $Id: vsilo.h,v 1.2 1999/11/20 21:47:40 knepley Exp $ */
2: /*
3: This is the definition of the SILO viewer structure.
4: Note: each viewer has a different data structure.
5: */
7: #include "petsc.h"
8: #include "petscsys.h"
9: #ifdef HAVE_SILO
10: #include "silo.h"
11: #endif
13: #include "src/sys/src/viewer/viewerimpl.h"
15: typedef struct {
16: #ifdef HAVE_SILO
17: DBfile *file_pointer; /* The PDB file for Silo */
18: #endif
19: char *meshName; /* The name for the current mesh */
20: char *objName; /* The name for the next object passed to Silo */
21: } Viewer_Silo;