Download this file

IntRoutingUpdate.h    33 lines (25 with data), 559 Bytes

 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
/*
* IntRoutingUpdate.h
*
* Created on: Mar 18, 2015
* Author: gaixas1
*/
#ifndef INTROUTINGUPDATE_H_
#define INTROUTINGUPDATE_H_
#include "Address.h"
class IntRoutingUpdate : public cObject {
protected:
Address dstAddr;
Address srcAddr;
public:
IntRoutingUpdate();
IntRoutingUpdate(const Address &addr);
~IntRoutingUpdate();
// Getters.
Address getDestination();
Address getSource();
// Setters.
void setDestination(Address addr);
void setSource(Address src);
};
#endif /* INTROUTINGUPDATE_H_ */