|
/*************
|
|
* Header file for graphdb.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_GRAPHDB_H
|
|
#define ngspice_GRAPHDB_H
|
|
|
|
int DestroyGraph(int id);
|
|
void FreeGraphs(void);
|
|
void SetGraphContext(int graphid);
|
|
void PushGraphContext(GRAPH *graph);
|
|
void PopGraphContext(void);
|
|
|
|
#endif
|