#ifndef SDPCODETS_H #define SDPCODETS_H #include namespace t3devlib { namespace gen { // subtypes of structured type // we just handle them by defining an alias to the base class // // FIXME: subtypes of structured types is not explicitely allowed in TTCN-3 // is this valid anyway ? #define SDP_contact_tel SDP_contact #define SDP_contact_email SDP_contact // definition additional attributes for the SDP_contact class // (included automatically in the generated codec) #define DEFINITIONS_SDP_contact() \ bool mReverseOrder; \ bool mHasComment; \ int mNextPosition; }} //namespaces #endif