-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCGMain.h
30 lines (23 loc) · 812 Bytes
/
CGMain.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef _CGMAIN_H_
#define _CGMAIN_H_
#include <DS/DSSystem.h>
#include "CGBasicTypes.h"
#include "CGWriter.h"
/******************************************************************************
* Klasse CGMain
* Zweck: Schreibt das Main-Programm der Simulation raus. Das erzeugte Main-
* Programm kann ggf. Laufzeitparameter wie Ausgabedatei oder Simula-
* tionszeit parsen und verarbeiten
******************************************************************************/
class CGMain
{
public:
CGMain(void);
~CGMain(void);
DSResult CGWriteMain(CGWriter *) const;
private:
DSResult CGWriteParseOptions(CGWriter *) const;
DSResult CGWriteMessageFunction(CGWriter *) const;
DSResult CGWriteHelpFunction(CGWriter *) const;
};
#endif