ETSI STF525 / Internal Testing test suite
This project provides an internal testing test suite and its associated Test Adapter/Codec
commsignia_layer_factory.hh
Go to the documentation of this file.
1 
11 #pragma once
12 
13 #include "layer_stack_builder.hh"
14 
15 #include "commsignia_layer.hh"
16 
23 public:
24 
30  // register factory
32  };
41  inline virtual layer* create_layer(const std::string& p_type, const std::string& p_param) {
42  return new commsignia_layer(p_type, p_param);
43  };
44 }; // End of class commsignia_layer_factory
45 
Forward declaration of TITAN class.
Definition: layer.hh:29
This class provides a factory class to create layer class instances .
Definition: layer_factory.hh:25
Header file for ITS protocol stack builder.
static void register_layer_factory(const std::string &p_type, layer_factory *p_layer_factory)
Add a new layer factory.
Definition: layer_factory.cc:16
Forward declaration of TITAN class.
Definition: commsignia_layer.hh:22
This class provides a factory class to create an commsignia_layer class instance. ...
Definition: commsignia_layer_factory.hh:21
commsignia_layer_factory()
Reference to the unique instance of this class.
Definition: commsignia_layer_factory.hh:29
virtual layer * create_layer(const std::string &p_type, const std::string &p_param)
Create the layers stack based on the provided layers stack description.
Definition: commsignia_layer_factory.hh:41
static commsignia_layer_factory _f
Definition: commsignia_layer_factory.hh:22