Commit bb1cf15e authored by garciay's avatar garciay
Browse files

STF525: Doxygen help support

parent 3da2b744
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -8,7 +8,7 @@


#include "converter.hh"
#include "converter.hh"


commsignia_layer::commsignia_layer(const std::string & p_type, const std::string & param) : Layer(p_type), _params(), _c2p_recv{0}, _802_11p_hdr{0}, _c2p_llc_hdr{0}, _mac_src(), _eth_type() {
commsignia_layer::commsignia_layer(const std::string & p_type, const std::string & param) : layer(p_type), _params(), _c2p_recv{0}, _802_11p_hdr{0}, _c2p_llc_hdr{0}, _mac_src(), _eth_type() {
  loggers::get_instance().log(">>> commsignia_layer::commsignia_layer: %s, %s", to_string().c_str(), param.c_str());
  loggers::get_instance().log(">>> commsignia_layer::commsignia_layer: %s, %s", to_string().c_str(), param.c_str());
  
  
  // Setup parameters
  // Setup parameters
+1 −1
Original line number Original line Diff line number Diff line
@@ -19,7 +19,7 @@ class OCTETSTRING; //! Forward declaration of TITAN class
 * \class commsignia_layer
 * \class commsignia_layer
 * \brief  This class provides description of ITS Commsignia port protocol layer
 * \brief  This class provides description of ITS Commsignia port protocol layer
 */
 */
class commsignia_layer : public Layer {
class commsignia_layer : public layer {
  static constexpr unsigned char LL_ADDR_LENGTH = 6;
  static constexpr unsigned char LL_ADDR_LENGTH = 6;
  static constexpr unsigned char LL_ORG_CODE_LENGTH = 3;
  static constexpr unsigned char LL_ORG_CODE_LENGTH = 3;
  
  
+1 −1
Original line number Original line Diff line number Diff line
@@ -2,7 +2,7 @@


#include "loggers.hh"
#include "loggers.hh"


ethernet_layer::ethernet_layer(const std::string & p_type, const std::string & param) : Layer(p_type), _params() {
ethernet_layer::ethernet_layer(const std::string & p_type, const std::string & param) : layer(p_type), _params() {
  loggers::get_instance().log(">>> ethernet_layer::ethernet_layer: %s, %s", to_string().c_str(), param.c_str());
  loggers::get_instance().log(">>> ethernet_layer::ethernet_layer: %s, %s", to_string().c_str(), param.c_str());
  // Setup parameters
  // Setup parameters
  Params::convert(_params, param);
  Params::convert(_params, param);
+1 −1
Original line number Original line Diff line number Diff line
@@ -13,7 +13,7 @@
#include "t_layer.hh"
#include "t_layer.hh"
#include "Params.hh"
#include "Params.hh"


class ethernet_layer : public Layer {
class ethernet_layer : public layer {
  Params _params; //! Layer parameters
  Params _params; //! Layer parameters


public: //! \publicsection
public: //! \publicsection
+1 −1
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@


#include "converter.hh"
#include "converter.hh"


http_layer::http_layer(const std::string & p_type, const std::string & param) : Layer(p_type), _params(), _codec(), _headers(new LibItsHttp__TypesAndValues::HeaderLines)//, _device_mode{false}
http_layer::http_layer(const std::string & p_type, const std::string & param) : layer(p_type), _params(), _codec(), _headers(new LibItsHttp__TypesAndValues::HeaderLines)//, _device_mode{false}
{
{
  loggers::get_instance().log(">>> http_layer::http_layer: %s, %s", to_string().c_str(), param.c_str());
  loggers::get_instance().log(">>> http_layer::http_layer: %s, %s", to_string().c_str(), param.c_str());
  // Setup parameters
  // Setup parameters
Loading