Main Page   Class Hierarchy   Compound List   File List   Compound Members  

prcspars.h

00001 
00002 
00003 /*
00004 Program                 PRCSPARS.H
00005 Purpose                 Reads a processfile and executes it (header)
00006                                         A processfile can be written by yourself or recorded by the application
00007                                         This file contains commands which will be processed sequentially
00008 Programmers             R. Spekreijse & N. Noorlander
00009 Last Update             21-12-1995
00010 */
00011 
00012 #ifndef PROCESSPARSER_H
00013 #define PROCESSPARSER_H
00014 
00015 #ifdef __GNUG__
00016 #pragma interface
00017 #endif
00018 
00019 #include <ctype.h>
00020 #include "misc.h"
00021 #include "gdserr.h"
00022 #include "gdsmes.h"
00023 #include <fstream.h>
00024 #include <iostream.h>
00025 #include <stdio.h>
00026 #include <stdlib.h>
00027 #include "alias.h"
00028 #include "cparser.h"
00029 #include "linepars.h"
00030 
00033 class ProcessParser
00034 {
00035         public:
00037                 ProcessParser(char*,AliasList* aliaslist);
00039                 ~ProcessParser();
00040 
00042                 bool    LoadProcess();
00043 
00044         protected:
00046                 Line_Parser*            _lineparser;
00047 };
00048 
00049 #endif
00050 
prcspars.h Source File -- Thu Nov 28 21:24:56 2002 -- 28 Nov 2002 -- 1.2.18 -- -- . -- Main Page