ETSI STF525 / Internal Testing test suite
This project provides an internal testing test suite and its associated Test Adapter/Codec
cam_layer.hh
Go to the documentation of this file.
1 
11 #pragma once
12 
13 #include "t_layer.hh"
14 #include "CAMCodec.hh"
15 
16 namespace LibItsCam__TestSystem {
17  class CamPort;
18  class CamReq;
19  class CamInd;
20 }
21 
26 class cam_layer : public t_layer<LibItsCam__TestSystem::CamPort> {
29 public:
30 
34  explicit cam_layer() : t_layer<LibItsCam__TestSystem::CamPort>(), _params(), _codec() {};
41  cam_layer(const std::string& p_type, const std::string& param);
45  virtual ~cam_layer() {};
46 
53  void sendMsg(const LibItsCam__TestSystem::CamReq& p_cam_req, Params& p_params);
54 
62  virtual void send_data(OCTETSTRING& data, Params& params);
70  virtual void receive_data(OCTETSTRING& data, Params& info);
71 }; // End of class cam_layer
72 
cam_layer()
CAM codec.
Definition: cam_layer.hh:34
This class provides basic description of an ITS port protocol layer. A port protocol layer is the fin...
Definition: t_layer.hh:21
Definition: CamPort.cc:14
Params _params
Definition: cam_layer.hh:27
CAMCodec _codec
Layer parameters.
Definition: cam_layer.hh:28
This class provides basic functionalities for an ITS dictionary.
Definition: Params.hh:21
This class provides description of ITS CAM protocol layer.
Definition: cam_layer.hh:26
virtual ~cam_layer()
Default destructor.
Definition: cam_layer.hh:45
Definition: CAMCodec.hh:23
Header file for ITS abstract protocol layer definition.