File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,12 @@ class DYNAMIC_GRAPH_DLLAPI Entity : private boost::noncopyable {
83
83
84
84
SignalMap getSignalMap () const ;
85
85
86
- /* * \name Logger related methods */
87
- /* * \{*/
86
+ // / \name Logger related methods
87
+ // / \{
88
+
89
+ Logger &logger () { return logger_; };
90
+ Logger const &logger () const { return logger_; };
91
+
88
92
// / \brief Send messages \c msg with level \c t.
89
93
// / Add string file and line to message.
90
94
void sendMsg (const std::string &msg, MsgType t = MSG_TYPE_INFO,
@@ -110,6 +114,8 @@ class DYNAMIC_GRAPH_DLLAPI Entity : private boost::noncopyable {
110
114
// / \brief Get the period of the stream period
111
115
double getStreamPrintPeriod () { return logger_.getStreamPrintPeriod (); }
112
116
117
+ // / \}
118
+
113
119
protected:
114
120
void addCommand (const std::string &name, command::Command *command);
115
121
You can’t perform that action at this time.
0 commit comments