Skip to content

Commit a26aaea

Browse files
author
Peter Soetens
committed
doxygen: cleanup of doxygen markup tags.
Signed-off-by: Peter Soetens <[email protected]>
1 parent 7943669 commit a26aaea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+135
-286
lines changed

Doxyfile.in

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -599,14 +599,12 @@ RECURSIVE = YES
599599
# excluded from the INPUT source files. This way you can easily exclude a
600600
# subdirectory from a directory tree whose root is specified with the INPUT tag.
601601

602-
EXCLUDE = @CMAKE_INSTALL_PREFIX@/include/rtt/impl \
603-
@CMAKE_INSTALL_PREFIX@/include/rtt/boost \
604-
@CMAKE_INSTALL_PREFIX@/include/rtt/os/gnulinux \
605-
@CMAKE_INSTALL_PREFIX@/include/rtt/os/xenomai \
606-
@CMAKE_INSTALL_PREFIX@/include/rtt/os/lxrt \
607-
@CMAKE_INSTALL_PREFIX@/include/rtt/os/ecos \
608-
@CMAKE_INSTALL_PREFIX@/include/rtt/os/macosx \
609-
@CMAKE_INSTALL_PREFIX@/include/rtt/os/win32
602+
EXCLUDE = os/gnulinux \
603+
os/xenomai \
604+
os/lxrt \
605+
os/ecos \
606+
os/macosx \
607+
os/win32
610608

611609
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
612610
# directories that are symbolic links (a Unix filesystem feature) are excluded
@@ -1240,9 +1238,9 @@ SEARCH_INCLUDES = YES
12401238
# contain include files that are not input files but should be processed by
12411239
# the preprocessor.
12421240

1243-
INCLUDE_PATH = src/ \
1244-
src/os \
1245-
src/os/gnulinux
1241+
INCLUDE_PATH = rtt/ \
1242+
rtt/os \
1243+
rtt/os/gnulinux
12461244

12471245
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
12481246
# patterns (like *.h and *.hpp) to filter out the header-files in the
@@ -1259,7 +1257,7 @@ INCLUDE_FILE_PATTERNS =
12591257
# undefined via #undef or recursively expanded use the := operator
12601258
# instead of the = operator.
12611259

1262-
PREDEFINED = DOXYGEN
1260+
PREDEFINED = DOXYGEN RTT_COMPONENT OROCOS_TARGET=gnulinux
12631261

12641262
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
12651263
# this tag can be used to specify a list of macro names that should be expanded.

rtt/Attribute.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ namespace RTT
5050
* It is used to expose a C/C++ variable to the interface of a TaskContext
5151
* in order to allow plugins or external tools to read and write it.
5252
* @param T The type of data this attribute holds.
53-
* @ingroup CoreLib
5453
*/
5554
template<typename T>
5655
class Attribute
@@ -232,7 +231,6 @@ namespace RTT
232231
/**
233232
* As opposed to a Attribute, a Constant can not be assigned to a new value
234233
* after creation.
235-
* @ingroup CoreLib
236234
*/
237235
template<typename T>
238236
class Constant

rtt/ConfigurationInterface.hpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
***************************************************************************/
3737

3838

39-
#ifndef CONFIGURATIONINTERFACE_HPP
40-
#define CONFIGURATIONINTERFACE_HPP
39+
#ifndef RTT_CONFIGURATIONINTERFACE_HPP
40+
#define RTT_CONFIGURATIONINTERFACE_HPP
4141

4242
#include <memory>
4343
#include <map>
@@ -53,6 +53,9 @@ namespace RTT
5353
* @brief A class for keeping track of Attribute, Constant
5454
* and Property objects of a TaskContext.
5555
* It allows plugins and remote components to browse the attributes and properties of a TaskContext.
56+
* @ingroup Services
57+
* @ingroup RTTComponentInterface
58+
* @ingroup CoreLibProperties
5659
*/
5760
class RTT_API ConfigurationInterface
5861
{

rtt/ConnPolicy.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ namespace RTT
7171
ConnPolicy::ConnPolicy(int type /* = DATA*/, int lock_policy /*= LOCK_FREE*/)
7272
: type(type), init(false), lock_policy(lock_policy), pull(false), size(0), transport(0), data_size(0) {}
7373

74+
/** @cond */
75+
/** This is dead code. We use the boost::serialization now.
76+
*/
7477
bool composeProperty(const PropertyBag& bag, ConnPolicy& result)
7578
{
7679
Property<int> i;
@@ -139,6 +142,10 @@ namespace RTT
139142
}
140143
return true;
141144
}
145+
146+
/** This is dead code. We use the boost::serialization now.
147+
* @internal
148+
*/
142149
void decomposeProperty(const ConnPolicy& cp, PropertyBag& targetbag)
143150
{
144151
log(Debug) <<"Decomposing ConnPolicy..." <<endlog();
@@ -153,5 +160,6 @@ namespace RTT
153160
targetbag.ownProperty( new Property<int>("data_size","A hint about the data size of a single data sample. Set to zero if unsure.", cp.transport));
154161
targetbag.ownProperty( new Property<string>("name_id","The name of the connection to be formed.",cp.name_id));
155162
}
163+
/** @endcond */
156164

157165
}

rtt/ConnPolicy.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
#include <string>
4343
#include "rtt-fwd.hpp"
44-
#include "rtt-config.h"
44+
#include "rtt-config.h"
4545

4646
namespace RTT {
4747

rtt/DataFlowInterface.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ namespace RTT
5252
/**
5353
* The Interface of a TaskContext which exposes its data-flow ports.
5454
* @ingroup Ports
55+
* @ingroup Services
56+
* @ingroup RTTComponentInterface
5557
*/
5658
class RTT_API DataFlowInterface
5759
{

rtt/Handle.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ namespace RTT
6262
// not valid !
6363
}
6464
@endverbatim
65-
* @ingroup CoreLib
6665
*/
6766
class RTT_API Handle
6867
{

rtt/Operation.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ namespace RTT
6363
*
6464
* @param Signature A template parameter that contains the function signature type
6565
* of the function this operation object will call.
66+
* @ingroup Operations
6667
*/
6768
template<class Signature>
6869
class Operation

rtt/OperationCaller.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
namespace RTT
5959
{
6060
/**
61-
* @defgroup OperationCallers OperationCaller Interface
61+
* @defgroup Operations Operation Interface
6262
* Invoking synchronous and asynchronous methods.
6363
* @ingroup RTTComponentInterface
6464
*/
@@ -76,7 +76,7 @@ namespace RTT
7676
* GlobalExecutionEngine is used instead.
7777
*
7878
* @ingroup RTTComponentInterface
79-
* @ingroup OperationCallers
79+
* @ingroup Operations
8080
*/
8181
template<class SignatureT>
8282
class OperationCaller

rtt/OperationInterface.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ namespace RTT
5656
/**
5757
* @brief Holds all exported operations of a component and is
5858
* able to produce callers for these operations.
59+
* @ingroup Operations
60+
* @ingroup Services
5961
*/
6062
class RTT_API OperationInterface
6163
{

0 commit comments

Comments
 (0)