-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathConnectionConfiguration_m.h
57 lines (44 loc) · 1.65 KB
/
ConnectionConfiguration_m.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
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
//
// Generated file, do not edit! Created by opp_msgc 4.2 from ConnectionConfiguration.msg.
//
#ifndef _CONNECTIONCONFIGURATION_M_H_
#define _CONNECTIONCONFIGURATION_M_H_
#include <omnetpp.h>
// opp_msgc version check
#define MSGC_VERSION 0x0402
#if (MSGC_VERSION!=OMNETPP_VERSION)
# error Version mismatch! Probably this file was generated by an earlier version of opp_msgc: 'make clean' should help.
#endif
/**
* Class generated from <tt>ConnectionConfiguration.msg</tt> by opp_msgc.
* <pre>
* message ConnectionConfiguration
* {
* int idServingSrb;
* }
* </pre>
*/
class ConnectionConfiguration : public ::cMessage
{
protected:
int idServingSrb_var;
private:
void copy(const ConnectionConfiguration& other);
protected:
// protected and unimplemented operator==(), to prevent accidental usage
bool operator==(const ConnectionConfiguration&);
public:
ConnectionConfiguration(const char *name=NULL, int kind=0);
ConnectionConfiguration(const ConnectionConfiguration& other);
virtual ~ConnectionConfiguration();
ConnectionConfiguration& operator=(const ConnectionConfiguration& other);
virtual ConnectionConfiguration *dup() const {return new ConnectionConfiguration(*this);}
virtual void parsimPack(cCommBuffer *b);
virtual void parsimUnpack(cCommBuffer *b);
// field getter/setter methods
virtual int getIdServingSrb() const;
virtual void setIdServingSrb(int idServingSrb);
};
inline void doPacking(cCommBuffer *b, ConnectionConfiguration& obj) {obj.parsimPack(b);}
inline void doUnpacking(cCommBuffer *b, ConnectionConfiguration& obj) {obj.parsimUnpack(b);}
#endif // _CONNECTIONCONFIGURATION_M_H_