blob: 14846ad002418c6e8fc14082d5d4e6ab16198ac9 (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/**********************************************************************************/
/* Deklarationsmodul */
/**********************************************************************************/
/*
* generiert mit Innovator Version 8.1.04
*
* erstellt am: 12.01.2006 14:36:16
* Repository : swtc20
* Modell : swt
* Benutzer : swtc20
* File : /users/swtc20/code/CGeraet.hpp
*
*/
// ino.module.CGeraet.1075.ifndef
#ifndef _CGERAET_HPP_1075
#define _CGERAET_HPP_1075
// ino.end
#include <string>
#include <iostream>
using std::string;
namespace systemModel {
namespace AnalyseModell {
// ino.class.CGeraet.451.declaration
class CGeraet
// ino.end
// ino.class.CGeraet.451.body
{
private:
int mWert;
// ino.attribute.mName.461.declaration
private:
string mName;
// ino.end
// ino.method.startCGeraet.465.declaration
public:
virtual int startCGeraet(int)=0;
// ino.end
// ino.method.stopCGeraet.467.declaration
public:
virtual int stopCGeraet();
// ino.end
public:
CGeraet(string);
CGeraet();
string getname() {return mName;}
void setWert(int);
int getWert() {return mWert;}
void setName(string s);
};
// ino.end
}; // namespace AnalyseModell
}; // namespace systemModel
#if !defined(NO_IMPLICIT_NAMESPACE_USE)
using namespace systemModel::AnalyseModell;
#endif
// ino.module.CGeraet.1075.endif
#endif
// ino.end
|