File tree Expand file tree Collapse file tree 9 files changed +8
-9
lines changed Expand file tree Collapse file tree 9 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -293,8 +293,6 @@ WARN_LOGFILE = @CMAKE_BINARY_DIR@/doc/doxygen.log
293
293
294
294
INPUT = @CMAKE_SOURCE_DIR@/include \
295
295
@CMAKE_SOURCE_DIR@/doc/additionalDoc
296
- IMAGE_PATH = @CMAKE_SOURCE_DIR@/doc/pictures \
297
- @CMAKE_SOURCE_DIR@/doc/figures
298
296
299
297
300
298
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
@@ -413,7 +411,7 @@ COLS_IN_ALPHA_INDEX = 4
413
411
# Doxygen will copy the logo to the output directory.
414
412
415
413
PROJECT_LOGO = @PROJECT_SOURCE_DIR@/doc/pictures/sot.png
416
- HTML_EXTRA_FILES += sot.png
414
+ HTML_EXTRA_FILES += @PROJECT_SOURCE_DIR@/doc/pictures/ sot.png
417
415
418
416
# The HTML_HEADER tag can be used to specify a personal HTML header for
419
417
# each generated HTML page. If it is left blank doxygen will generate a
@@ -427,7 +425,7 @@ HTML_EXTRA_FILES += sot.png
427
425
# changing the value of configuration settings such as GENERATE_TREEVIEW!
428
426
429
427
HTML_HEADER = @PROJECT_SOURCE_DIR@/doc/header.html
430
- HTML_EXTRA_FILES += @PROJECT_SOURCE_DIR@/doc/sot.ico
428
+ HTML_EXTRA_FILES += @PROJECT_SOURCE_DIR@/doc/pictures/ sot.ico
431
429
432
430
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
433
431
# each generated HTML page. If it is left blank doxygen will generate a
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ It is possible to set the output stream of the messages inside a file:
26
26
\section sec_use_rt_logger Using the rt_logger
27
27
28
28
29
- \newcode
29
+ \code
30
30
// Somewhere in your library
31
31
dgRTLOG() << "your message. Prefer to use \n than std::endl."
32
32
\endcode
Original file line number Diff line number Diff line change @@ -62,6 +62,6 @@ load classes of entities and create instances of entities.</p>
62
62
\li Type-safe connection of input and output signals
63
63
\li On-demand signal computation as well as a caching system for signal values
64
64
allow fast computation of signal values, which is a critical point for real-time
65
- systems\n See \ref scriptingabout
65
+ systems\n
66
66
67
67
*/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -206,6 +206,7 @@ class Logger {
206
206
* allows it. The lineId is used to identify the point where sendMsg is
207
207
* called so that streaming messages are printed only every streamPrintPeriod
208
208
* iterations.
209
+ * \param type specifies the verbosity level, for instance MSG_TYPE_DEBUG
209
210
* \param lineId typically __FILE__ ":" BOOST_PP_STRINGIZE(__LINE__)
210
211
*/
211
212
RTLoggerStream stream (MsgType type, const std::string &lineId = " " ) {
@@ -265,8 +266,8 @@ class Logger {
265
266
266
267
inline bool isStreamMsg (MsgType m) { return (m & MSG_TYPE_STREAM_BIT); }
267
268
268
- /* * Check whether a message of type \m and from \c lineId should be accepted.
269
- * \note If \c is a stream type, the internal counter associated to \c lineId
269
+ /* * Check whether a message of type \p m and from \p c lineId should be accepted.
270
+ * \note If \p m is a stream type, the internal counter associated to \p lineId
270
271
* is updated.
271
272
*/
272
273
bool acceptMsg (MsgType m, const std::string &lineId) {
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class LoggerStream {
27
27
28
28
// / Write to an ostream object.
29
29
// /
30
- // / The easieast is to use the macro \ref dgADD_OSTREAM_TO_RTLOG(ostr) where
30
+ // / The easieast is to use the macro dgADD_OSTREAM_TO_RTLOG(ostr) where
31
31
// / `ostr` can be `std::cout` or an std::ofstream...
32
32
class LoggerIOStream : public LoggerStream {
33
33
public:
You can’t perform that action at this time.
0 commit comments