Changeset 3710 for source/ariba


Ignore:
Timestamp:
May 26, 2009, 5:18:02 PM (15 years ago)
Author:
mies
Message:

removed control info

Location:
source/ariba/utility/messages
Files:
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/messages/Message.h

    r3690 r3710  
    4646#include<boost/shared_array.hpp>
    4747
    48 
    49 // local includes
    50 #include "MessageControlInfo.h"
    51 
    5248// forward declaration
    5349#include "_namespace.h"
     
    9692        const Address* srcAddr;
    9793        const Address* destAddr;
    98         const MessageControlInfo* ctrlInfo;
    9994
    10095public:
     
    10398         */
    10499        inline Message() :
    105                 root(), releasePayload(true), payload(), srcAddr(NULL),destAddr(NULL),ctrlInfo(NULL) {
     100                root(), releasePayload(true), payload(), srcAddr(NULL),destAddr(NULL) {
    106101        }
    107102
     
    111106         */
    112107        inline Message( const Data& data ) :
    113                 srcAddr(NULL),destAddr(NULL),ctrlInfo(NULL), releasePayload(true) {
     108                srcAddr(NULL),destAddr(NULL), releasePayload(true) {
    114109                this->payload = data.clone();
    115110//              this->root = shared_array<uint8_t>((uint8_t*)data.getBuffer());
     
    173168        inline const Address* getSourceAddress() const {
    174169                return srcAddr;
    175         }
    176 
    177         /**
    178          * Set optional control information
    179          *
    180          * @parm ctrlInfo The optional control information
    181          */
    182         inline void setControlInfo(const MessageControlInfo* ctrlInfo) {
    183                 this->ctrlInfo = ctrlInfo;
    184         }
    185 
    186         /**
    187          * Returns the optional control information or NULL
    188          *
    189          * @return The optional control information or NULL
    190          */
    191         inline const MessageControlInfo* getControlInfo() const {
    192                 return ctrlInfo;
    193170        }
    194171
Note: See TracChangeset for help on using the changeset viewer.