1 /**********
2 Copyright 1990 Regents of the University of California.  All rights reserved.
3 Author: 1985 Thomas L. Quarles
4 **********/
5 
6 #ifndef ngspice_JOBDEFS_H
7 #define ngspice_JOBDEFS_H
8 
9 
10 #include "ngspice/typedefs.h"
11 #include "ngspice/ifsim.h"
12 
13 struct JOB {
14     int JOBtype;                /* type of job */
15     struct JOB *JOBnextJob;     /* next job in list */
16     IFuid JOBname;              /* name of this job */
17 };
18 
19 enum {
20     NODOMAIN = 0,
21     TIMEDOMAIN,
22     FREQUENCYDOMAIN,
23     SWEEPDOMAIN,
24 };
25 
26 #endif
27