source: trunk/ETSI-Testsuites/ETSI_auto_IOT/codec/c++/codec.h

Last change on this file was 22, checked in by rings, 14 years ago
  • Property svn:executable set to *
File size: 883 bytes
Line 
1// This is the codec header, it is given as an input file for the codec
2// generator (with the '-i' option).
3//
4// Its role is to define all the types that are not handled by the generator
5// (namely the enumerations and all subtypes: integer, bitstring,
6// octetstring,...). As well as customising the classes automatically generated
7// (by using a macro to add some definitions in the class).
8//
9// This file is included by the source files generated by t3cdgen
10// (gen_classes.h, gen_classes.cpp).
11//
12
13#ifndef  CODEC_H
14#define  CODEC_H
15#include <t3devlib/t3devlib.h>
16
17#include "libcommon_codets.h"
18#include "sip_codets.h"
19#include "sdp_codets.h"
20#include "isup_codets.h"
21
22namespace t3devlib {
23namespace gen {
24
25// xml body is not supported in the codec
26typedef t3devlib::Undef XmlBody;
27// xml message is not supported in the codec
28typedef t3devlib::Undef XMLMessage;
29
30
31}}
32
33#endif
34
Note: See TracBrowser for help on using the repository browser.