1 /*
2      PetscViewers are objects where other objects can be looked at or stored.
3 */
4 
5 #if !defined(PETSCVIEWERTYPES_H)
6 #define PETSCVIEWERTYPES_H
7 
8 /*S
9      PetscViewer - Abstract PETSc object that helps view (in ASCII, binary, graphically etc)
10          other PETSc objects
11 
12    Level: beginner
13 
14 .seealso:  PetscViewerCreate(), PetscViewerSetType(), PetscViewerType
15 S*/
16 typedef struct _p_PetscViewer* PetscViewer;
17 
18 #endif
19