Actual source code: vsilo.h

  1: /* 
  2:    This is the definition of the SILO viewer structure.
  3:    Note: each viewer has a different data structure.
  4: */

  6: #include "petsc.h"
  7: #include "petscsys.h" 
  8: #ifdef HAVE_SILO
  9:   #include "silo.h"
 10: #endif

 12: #include "src/sys/src/viewer/viewerimpl.h"

 14: typedef struct {
 15: #ifdef HAVE_SILO
 16:   DBfile *file_pointer; /* The PDB file for Silo */
 17: #endif
 18:   char   *meshName;     /* The name for the current mesh */
 19:   char   *objName;      /* The name for the next object passed to Silo */
 20: } Viewer_Silo;