#include <EtherApp_m.h>
Inheritance diagram for EtherAppResp:

Public Methods | |
| EtherAppResp (const char *name=NULL, int kind=0) | |
| EtherAppResp (const EtherAppResp &other) | |
| virtual | ~EtherAppResp () |
| EtherAppResp & | operator= (const EtherAppResp &other) |
| virtual cObject * | dup () const |
| virtual int | getRequestId () const |
| virtual void | setRequestId (int requestId_var) |
| virtual int | getNumFrames () const |
| virtual void | setNumFrames (int numFrames_var) |
Protected Attributes | |
| int | requestId_var |
| int | numFrames_var |
|
||||||||||||
|
Definition at line 191 of file EtherApp_m.cc. References numFrames_var, and requestId_var. Referenced by dup().
00191 : cMessage30(name,kind) 00192 { 00193 unsigned int i; 00194 this->requestId_var = 0; 00195 this->numFrames_var = 0; 00196 } |
|
|
Definition at line 198 of file EtherApp_m.cc. References operator=().
00198 : cMessage30() 00199 { 00200 unsigned int i; 00201 setName(other.name()); 00202 operator=(other); 00203 } |
|
|
Definition at line 205 of file EtherApp_m.cc.
00206 {
00207 unsigned int i;
00208 }
|
|
|
Reimplemented from cMessage30. Definition at line 47 of file EtherApp_m.h. References EtherAppResp().
00047 {return new EtherAppResp(*this);}
|
|
|
Definition at line 230 of file EtherApp_m.cc. References numFrames_var. Referenced by EtherAppRespDescriptor::getFieldAsString().
00231 {
00232 return numFrames_var;
00233 }
|
|
|
Definition at line 220 of file EtherApp_m.cc. References requestId_var. Referenced by EtherAppRespDescriptor::getFieldAsString().
00221 {
00222 return requestId_var;
00223 }
|
|
|
Definition at line 210 of file EtherApp_m.cc. References numFrames_var, cMessage30::operator=(), and requestId_var. Referenced by EtherAppResp().
00211 {
00212 if (this==&other) return *this;
00213 unsigned int i;
00214 cMessage30::operator=(other);
00215 this->requestId_var = other.requestId_var;
00216 this->numFrames_var = other.numFrames_var;
00217 return *this;
00218 }
|
|
|
Definition at line 235 of file EtherApp_m.cc. References numFrames_var. Referenced by EtherAppRespDescriptor::setFieldAsString().
00236 {
00237 this->numFrames_var = numFrames_var;
00238 }
|
|
|
Definition at line 225 of file EtherApp_m.cc. References requestId_var. Referenced by EtherAppSrv::handleMessage(), and EtherAppRespDescriptor::setFieldAsString().
00226 {
00227 this->requestId_var = requestId_var;
00228 }
|
|
|
Definition at line 41 of file EtherApp_m.h. Referenced by EtherAppResp(), getNumFrames(), operator=(), and setNumFrames(). |
|
|
Definition at line 40 of file EtherApp_m.h. Referenced by EtherAppResp(), getRequestId(), operator=(), and setRequestId(). |
1.2.17