1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // Generated file, do not edit! Created by nedtool 5.2 from Frames/max_Stream_Id.msg.
- //
- #if defined(__clang__)
- # pragma clang diagnostic ignored "-Wreserved-id-macro"
- #endif
- #ifndef __MAX_STREAM_ID_M_H
- #define __MAX_STREAM_ID_M_H
- #include <omnetpp.h>
- // nedtool version check
- #define MSGC_VERSION 0x0502
- #if (MSGC_VERSION!=OMNETPP_VERSION)
- # error Version mismatch! Probably this file was generated by an earlier version of nedtool: 'make clean' should help.
- #endif
- /**
- * Class generated from <tt>Frames/max_Stream_Id.msg:19</tt> by nedtool.
- * <pre>
- * //
- * // TODO generated message class
- * //
- * class Max_Stream_Id
- * {
- * uint8_t type = 6;
- * uint32_t maximum_Stream_Id;
- * }
- * </pre>
- */
- class Max_Stream_Id : public ::omnetpp::cObject
- {
- protected:
- uint8_t type;
- uint32_t maximum_Stream_Id;
- private:
- void copy(const Max_Stream_Id& other);
- protected:
- // protected and unimplemented operator==(), to prevent accidental usage
- bool operator==(const Max_Stream_Id&);
- public:
- Max_Stream_Id();
- Max_Stream_Id(const Max_Stream_Id& other);
- virtual ~Max_Stream_Id();
- Max_Stream_Id& operator=(const Max_Stream_Id& other);
- virtual Max_Stream_Id *dup() const override {return new Max_Stream_Id(*this);}
- virtual void parsimPack(omnetpp::cCommBuffer *b) const override;
- virtual void parsimUnpack(omnetpp::cCommBuffer *b) override;
- // field getter/setter methods
- virtual uint8_t getType() const;
- virtual void setType(uint8_t type);
- virtual uint32_t getMaximum_Stream_Id() const;
- virtual void setMaximum_Stream_Id(uint32_t maximum_Stream_Id);
- };
- inline void doParsimPacking(omnetpp::cCommBuffer *b, const Max_Stream_Id& obj) {obj.parsimPack(b);}
- inline void doParsimUnpacking(omnetpp::cCommBuffer *b, Max_Stream_Id& obj) {obj.parsimUnpack(b);}
- #endif // ifndef __MAX_STREAM_ID_M_H
|