GeoNetworkingCodec.hh 495 Bytes
Newer Older
garciay's avatar
garciay committed
1
2
3
4
5
6
#ifndef GNCODEC_H
#define GNCODEC_H
#include "GeoNetworking_Types.hh"
#include "Codec.h"

class GeoNetworkingCodec : public Codec<LibItsGeoNetworking__TypesAndValues::GeoNetworkingPdu> {
7
	int encode_ (const Base_Type& type, TTCN_Buffer& encoding_buffer);
garciay's avatar
garciay committed
8
9
10
11
12
13
public:
  virtual int encode (const LibItsGeoNetworking__TypesAndValues::GeoNetworkingPdu&, OCTETSTRING& data);
  virtual int decode (const OCTETSTRING& data, LibItsGeoNetworking__TypesAndValues::GeoNetworkingPdu&);
};

#endif