Commit 3da2b744 authored by garciay's avatar garciay
Browse files

STF525: Doxygen help support

parent cf2b30d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ public:
    layer_stack_builder::register_layer_factory("CF", this);
  };

  inline virtual layer \* create_layer(const std::string& p_type, const std::string& p_param) {
  inline virtual layer* create_layer(const std::string& p_type, const std::string& p_param) {
    return new ConfigRsuSimulatorLayer(p_type, p_param);
  };

+2 −2
Original line number Diff line number Diff line
@@ -31,13 +31,13 @@ public: //! \publicsection
    layer_stack_builder::register_layer_factory("BTP", this);
  };
  /*!
   * \fn layer \* create_layer(const std::string & type, const std::string & param);
   * \fn layer* create_layer(const std::string & type, const std::string & param);
   * \brief  Create the layers stack based on the provided layers stack description
   * \param[in] p_type The provided layers stack description
   * \param[in] p_params Optional parameters
   * \return 0 on success, -1 otherwise
   */
  inline virtual layer \* create_layer(const std::string& p_type, const std::string& p_param){
  inline virtual layer* create_layer(const std::string& p_type, const std::string& p_param){
    return new btp_layer(p_type, p_param);
  };
}; // End of class btp_layer_factory
+2 −2
Original line number Diff line number Diff line
@@ -31,13 +31,13 @@ public: //! \publicsection
    layer_stack_builder::register_layer_factory("CAM", this);
  };
  /*!
   * \fn layer \* create_layer(const std::string & type, const std::string & param);
   * \fn layer* create_layer(const std::string & type, const std::string & param);
   * \brief  Create the layers stack based on the provided layers stack description
   * \param[in] p_type The provided layers stack description
   * \param[in] p_params Optional parameters
   * \return 0 on success, -1 otherwise
   */
  inline virtual layer \* create_layer(const std::string& p_type, const std::string& p_param){
  inline virtual layer* create_layer(const std::string& p_type, const std::string& p_param){
    return new cam_layer(p_type, p_param);
  };
}; // End of class cam_layer_factory
+2 −2
Original line number Diff line number Diff line
@@ -31,14 +31,14 @@ public: //! \publicsection
    layer_stack_builder::register_layer_factory("COMMSIGNIA", this);
  };
  /*!
   * \fn layer \* create_layer(const std::string & type, const std::string & param);
   * \fn layer* create_layer(const std::string & type, const std::string & param);
   * \brief  Create the layers stack based on the provided layers stack description
   * \param[in] p_type The provided layers stack description
   * \param[in] p_params Optional parameters
   * \return 0 on success, -1 otherwise
   * \inline
   */
  inline virtual layer \* create_layer(const std::string& p_type, const std::string& p_param) {
  inline virtual layer* create_layer(const std::string& p_type, const std::string& p_param) {
    return new commsignia_layer(p_type, p_param);
  };
}; // End of class commsignia_layer_factory
+2 −2
Original line number Diff line number Diff line
@@ -31,14 +31,14 @@ public: //! \publicsection
    layer_stack_builder::register_layer_factory("DENM", this);
  };
  /*!
   * \fn layer \* create_layer(const std::string & type, const std::string & param);
   * \fn layer* create_layer(const std::string & type, const std::string & param);
   * \brief  Create the layers stack based on the provided layers stack description
   * \param[in] p_type The provided layers stack description
   * \param[in] p_params Optional parameters
   * \return 0 on success, -1 otherwise
   * \inline
   */
  inline virtual layer \* create_layer(const std::string& p_type, const std::string& p_param){
  inline virtual layer* create_layer(const std::string& p_type, const std::string& p_param){
    return new denm_layer(p_type, p_param);
  };
}; // End of class denm_layer_factory
Loading