INET Framework for OMNeT++/OMNEST
inet::RSVPResvMsg_Base Class Reference

Class generated from inet/networklayer/rsvp_te/RSVPResvMsg.msg:38 by nedtool. More...

#include <RSVPResvMsg_m.h>

Inheritance diagram for inet::RSVPResvMsg_Base:
inet::RSVPPacket inet::RSVPPacket_Base inet::RSVPMessage inet::RSVPResvMsg

Public Member Functions

virtual ~RSVPResvMsg_Base ()
 
virtual RSVPResvMsg_Basedup () const override
 
virtual void parsimPack (omnetpp::cCommBuffer *b) const override
 
virtual void parsimUnpack (omnetpp::cCommBuffer *b) override
 
virtual RsvpHopObj_tgetHop ()
 
virtual const RsvpHopObj_tgetHop () const
 
virtual void setHop (const RsvpHopObj_t &hop)
 
virtual FlowDescriptorVectorgetFlowDescriptor ()
 
virtual const FlowDescriptorVectorgetFlowDescriptor () const
 
virtual void setFlowDescriptor (const FlowDescriptorVector &flowDescriptor)
 
- Public Member Functions inherited from inet::RSVPPacket
 RSVPPacket (const char *name=nullptr, int kind=0)
 
 RSVPPacket (const RSVPPacket &other)
 
RSVPPacketoperator= (const RSVPPacket &other)
 
IPv4Address getDestAddress ()
 
int getTunnelId ()
 
int getExTunnelId ()
 
int getSetupPri ()
 
int getHoldingPri ()
 
bool isInSession (SessionObj_t *s)
 
- Public Member Functions inherited from inet::RSVPPacket_Base
virtual ~RSVPPacket_Base ()
 
virtual SessionObj_tgetSession ()
 
virtual const SessionObj_tgetSession () const
 
virtual void setSession (const SessionObj_t &session)
 
virtual bool getChecksumValid () const
 
virtual void setChecksumValid (bool checksumValid)
 
- Public Member Functions inherited from inet::RSVPMessage
 RSVPMessage (const char *name=nullptr, short kind=0)
 
 RSVPMessage (const RSVPMessage &other)
 
virtual ~RSVPMessage ()
 
RSVPMessageoperator= (const RSVPMessage &other)
 
virtual int getRsvpKind () const
 
virtual void setRsvpKind (int rsvpKind)
 

Protected Member Functions

bool operator== (const RSVPResvMsg_Base &)
 
 RSVPResvMsg_Base (const char *name=nullptr, short kind=0)
 
 RSVPResvMsg_Base (const RSVPResvMsg_Base &other)
 
RSVPResvMsg_Baseoperator= (const RSVPResvMsg_Base &other)
 
- Protected Member Functions inherited from inet::RSVPPacket_Base
bool operator== (const RSVPPacket_Base &)
 
 RSVPPacket_Base (const char *name=nullptr, short kind=0)
 
 RSVPPacket_Base (const RSVPPacket_Base &other)
 
RSVPPacket_Baseoperator= (const RSVPPacket_Base &other)
 
- Protected Member Functions inherited from inet::RSVPMessage
bool operator== (const RSVPMessage &)
 

Protected Attributes

RsvpHopObj_t hop
 
FlowDescriptorVector flowDescriptor
 
- Protected Attributes inherited from inet::RSVPPacket_Base
SessionObj_t session
 
bool checksumValid
 
- Protected Attributes inherited from inet::RSVPMessage
int rsvpKind
 

Private Member Functions

void copy (const RSVPResvMsg_Base &other)
 

Detailed Description

Class generated from inet/networklayer/rsvp_te/RSVPResvMsg.msg:38 by nedtool.

//
// FIXME missing documentation
//
packet RSVPResvMsg extends RSVPPacket
{
    @customize(true);
    RsvpHopObj_t hop;
    FlowDescriptorVector flowDescriptor;
    rsvpKind = RESV_MESSAGE;
}

RSVPResvMsg_Base is only useful if it gets subclassed, and RSVPResvMsg is derived from it. The minimum code to be written for RSVPResvMsg is the following:

class INET_API RSVPResvMsg : public RSVPResvMsg_Base
{
  private:
    void copy(const RSVPResvMsg& other) { ... }
  public:
    RSVPResvMsg(const char *name=nullptr, short kind=0) : RSVPResvMsg_Base(name,kind) {}
    RSVPResvMsg(const RSVPResvMsg& other) : RSVPResvMsg_Base(other) {copy(other);}
    RSVPResvMsg& operator=(const RSVPResvMsg& other) {if (this==&other) return *this; RSVPResvMsg_Base::operator=(other); copy(other); return *this;}
    virtual RSVPResvMsg *dup() const override {return new RSVPResvMsg(*this);}
    // ADD CODE HERE to redefine and implement pure virtual functions from RSVPResvMsg_Base
};

The following should go into a .cc (.cpp) file:

Register_Class(RSVPResvMsg)

Constructor & Destructor Documentation

inet::RSVPResvMsg_Base::RSVPResvMsg_Base ( const char *  name = nullptr,
short  kind = 0 
)
protected
inet::RSVPResvMsg_Base::RSVPResvMsg_Base ( const RSVPResvMsg_Base other)
protected
virtual inet::RSVPResvMsg_Base::~RSVPResvMsg_Base ( )
virtual

Member Function Documentation

void inet::RSVPResvMsg_Base::copy ( const RSVPResvMsg_Base other)
private
virtual RSVPResvMsg_Base* inet::RSVPResvMsg_Base::dup ( ) const
inlineoverridevirtual

Reimplemented from inet::RSVPPacket.

Reimplemented in inet::RSVPResvMsg.

97 {throw omnetpp::cRuntimeError("You forgot to manually add a dup() function to class RSVPResvMsg");}
virtual FlowDescriptorVector& inet::RSVPResvMsg_Base::getFlowDescriptor ( )
virtual
virtual const FlowDescriptorVector& inet::RSVPResvMsg_Base::getFlowDescriptor ( ) const
inlinevirtual

Referenced by getFlowDescriptor().

106 {return const_cast<RSVPResvMsg_Base*>(this)->getFlowDescriptor();}
virtual FlowDescriptorVector & getFlowDescriptor()
RSVPResvMsg_Base(const char *name=nullptr, short kind=0)
virtual RsvpHopObj_t& inet::RSVPResvMsg_Base::getHop ( )
virtual
virtual const RsvpHopObj_t& inet::RSVPResvMsg_Base::getHop ( ) const
inlinevirtual

Referenced by getHop().

103 {return const_cast<RSVPResvMsg_Base*>(this)->getHop();}
RSVPResvMsg_Base(const char *name=nullptr, short kind=0)
virtual RsvpHopObj_t & getHop()
RSVPResvMsg_Base& inet::RSVPResvMsg_Base::operator= ( const RSVPResvMsg_Base other)
protected
bool inet::RSVPResvMsg_Base::operator== ( const RSVPResvMsg_Base )
protected
virtual void inet::RSVPResvMsg_Base::parsimPack ( omnetpp::cCommBuffer *  b) const
overridevirtual

Reimplemented from inet::RSVPPacket_Base.

virtual void inet::RSVPResvMsg_Base::parsimUnpack ( omnetpp::cCommBuffer *  b)
overridevirtual

Reimplemented from inet::RSVPPacket_Base.

virtual void inet::RSVPResvMsg_Base::setFlowDescriptor ( const FlowDescriptorVector flowDescriptor)
virtual

Referenced by inet::RSVP::refreshResv().

virtual void inet::RSVPResvMsg_Base::setHop ( const RsvpHopObj_t hop)
virtual

Referenced by inet::RSVP::refreshResv().

Member Data Documentation

FlowDescriptorVector inet::RSVPResvMsg_Base::flowDescriptor
protected
RsvpHopObj_t inet::RSVPResvMsg_Base::hop
protected

The documentation for this class was generated from the following file: