summaryrefslogtreecommitdiff
path: root/interface/compat/vsomeip/trace.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'interface/compat/vsomeip/trace.hpp')
-rw-r--r--interface/compat/vsomeip/trace.hpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/interface/compat/vsomeip/trace.hpp b/interface/compat/vsomeip/trace.hpp
index ebdd418..db2054a 100644
--- a/interface/compat/vsomeip/trace.hpp
+++ b/interface/compat/vsomeip/trace.hpp
@@ -153,29 +153,29 @@ public:
*/
class connector {
public:
- /**
- * \brief Get access to the connector.
- *
- * \return Shared pointer to the singleton object.
- */
+ /**
+ * \brief Get access to the connector.
+ *
+ * \return Shared pointer to the singleton object.
+ */
static std::shared_ptr<connector> get();
virtual ~connector() {};
- /**
- * \brief Add a trace channel to the connector.
- *
- * Creates a trace channel with the given identifier and name
- * and adds it to the connector.
- *
- * \param _id Id of the trace channel.
- * \param _name Name of the trace channel
- *
- * \return Shared pointer to the created trace channel or
- * nullptr if the trace channel could not be created because
- * another trace channel with the given identifier does
- * already exist.
- */
+ /**
+ * \brief Add a trace channel to the connector.
+ *
+ * Creates a trace channel with the given identifier and name
+ * and adds it to the connector.
+ *
+ * \param _id Id of the trace channel.
+ * \param _name Name of the trace channel
+ *
+ * \return Shared pointer to the created trace channel or
+ * nullptr if the trace channel could not be created because
+ * another trace channel with the given identifier does
+ * already exist.
+ */
virtual std::shared_ptr<channel> add_channel(
const std::string &_id,
const std::string &_name) = 0;
@@ -203,7 +203,7 @@ public:
* of the default trace channel.
*
* \return Shared pointer to the created trace channel or
- * nullptr if the trace channel does not exist.
+ * nullptr if the trace channel does not exist.
*/
virtual std::shared_ptr<channel> get_channel(
const std::string &_id = VSOMEIP_TC_DEFAULT_CHANNEL_ID) const = 0;