Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
cf0e6e22
Commit
cf0e6e22
authored
Aug 18, 2011
by
Sebastian Eichelbaum
Browse files
Options
Browse Files
Download
Plain Diff
[FIX]
parents
fbb297a2
85a9236f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
10 deletions
+10
-10
src/core/common/WColor.h
src/core/common/WColor.h
+1
-1
src/core/common/WLogger.h
src/core/common/WLogger.h
+1
-1
src/core/common/math/WPlane.h
src/core/common/math/WPlane.h
+1
-1
src/core/common/math/WValue.h
src/core/common/math/WValue.h
+1
-1
src/core/common/test/WMixinVector_test.h
src/core/common/test/WMixinVector_test.h
+2
-2
src/core/dataHandler/datastructures/WFiberCluster.cpp
src/core/dataHandler/datastructures/WFiberCluster.cpp
+2
-2
src/core/dataHandler/datastructures/WFiberCluster.h
src/core/dataHandler/datastructures/WFiberCluster.h
+2
-2
No files found.
src/core/common/WColor.h
View file @
cf0e6e22
...
...
@@ -64,7 +64,7 @@ WColor OWCOMMON_EXPORT inverseColor( const WColor& other );
*/
namespace
defaultColor
{
// \cond
// \cond
Supress_Doxygen
static
const
WColor
GREEN
(
0.0
,
1.0
,
0.0
,
1.0
);
//!< Default for green
static
const
WColor
RED
(
1.0
,
0.0
,
0.0
,
1.0
);
//!< Default for red
static
const
WColor
BLUE
(
0.0
,
0.0
,
1.0
,
1.0
);
//!< Default for blue
...
...
src/core/common/WLogger.h
View file @
cf0e6e22
...
...
@@ -191,7 +191,7 @@ namespace wlog
template
<
typename
T
>
WStreamedLogger
operator
<<
(
const
T
&
loggable
);
// Doxygen should ignore the TypeDef below which are just an alias for std::endl etc.
// \cond
// \cond
Supress_Doxygen
typedef
std
::
basic_ostream
<
char
,
std
::
char_traits
<
char
>
>
OutStreamType
;
typedef
OutStreamType
&
(
*
StreamManipulatorFunctor
)(
OutStreamType
&
);
// \endcond
...
...
src/core/common/math/WPlane.h
View file @
cf0e6e22
...
...
@@ -146,7 +146,7 @@ public:
m_second
=
normalize
(
m_second
);
}
// \cond
// \cond
Supress_Doxygen
// /**
// * Computes sample points on that plane.
// *
...
...
src/core/common/math/WValue.h
View file @
cf0e6e22
...
...
@@ -41,7 +41,7 @@ template< typename T > class WValue
template
<
typename
S
>
friend
class
WValue
;
//!< All WValues are friends of each other.
// We exclude this from doxygen since they are documented already as functions and I don't want to duplicate that documentation
// \cond
// \cond
Supress_Doxygen
template
<
typename
U
>
friend
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
WValue
<
U
>
&
rhs
);
template
<
typename
U
>
friend
std
::
istream
&
operator
>>
(
std
::
istream
&
in
,
WValue
<
U
>&
rhs
);
// \endcond
...
...
src/core/common/test/WMixinVector_test.h
View file @
cf0e6e22
...
...
@@ -33,7 +33,7 @@
#include "../WMixinVector.h"
#include "WMixinVectorTraits.h"
// \cond
// \cond
Supress_Doxygen
// This is just a dummy class to test if the default constructor is called when
// not specified by WMixinVector instanziation.
class
A
{
public
:
A
(){
m_x
=
3.1415
;}
bool
operator
==
(
double
x
){
return
m_x
==
x
;}
double
m_x
;
};
// NOLINT
...
...
@@ -41,7 +41,7 @@ class A {public: A(){m_x = 3.1415;} bool operator==(double x){return m_x == x;}
/**
* Unit tests the WMixinVector copy from OSG
* \warning THIS IS FAR AWAY FROM BE
E
ING A COMPLETE UNIT TEST SUIT FOR WMIXINVECTOR!!!
* \warning THIS IS FAR AWAY FROM BEING A COMPLETE UNIT TEST SUIT FOR WMIXINVECTOR!!!
*/
class
WMixinVectorTest
:
public
CxxTest
::
TestSuite
{
...
...
src/core/dataHandler/datastructures/WFiberCluster.cpp
View file @
cf0e6e22
...
...
@@ -39,7 +39,7 @@
// information. Since we don't have the possibility of multiple
// InputConnectors we must agglomerate those into one object. Please remove this.
// initializes the variable and provides a linker reference
// \cond
// \cond
Supress_Doxygen
boost
::
shared_ptr
<
WPrototyped
>
WFiberCluster
::
m_prototype
=
boost
::
shared_ptr
<
WPrototyped
>
();
// \endcond
...
...
@@ -100,7 +100,7 @@ void WFiberCluster::merge( WFiberCluster& other ) // NOLINT
}
// NODOXYGEN
// \cond
// \cond
Supress_Doxygen
void
WFiberCluster
::
setDataSetReference
(
boost
::
shared_ptr
<
const
WDataSetFiberVector
>
fibs
)
{
m_fibs
=
fibs
;
...
...
src/core/dataHandler/datastructures/WFiberCluster.h
View file @
cf0e6e22
...
...
@@ -192,7 +192,7 @@ public:
// dataset is, we need it in the WMVoxelizer module as well as the clustering
// information. Since we don't have the possibility of multiple
// InputConnectors we must agglomerate those into one object. Please remove this.
// \cond
// \cond
Supress_Doxygen
void
setDataSetReference
(
boost
::
shared_ptr
<
const
WDataSetFiberVector
>
fibs
);
boost
::
shared_ptr
<
const
WDataSetFiberVector
>
getDataSetReference
()
const
;
static
boost
::
shared_ptr
<
WPrototyped
>
getPrototype
();
...
...
@@ -227,7 +227,7 @@ protected:
// dataset is, we need it in the WMVoxelizer module as well as the clustering
// information. Since we don't have the possibility of multiple
// InputConnectors we must agglomerate those into one object. Please remove this.
// \cond
// \cond
Supress_Doxygen
static
boost
::
shared_ptr
<
WPrototyped
>
m_prototype
;
// \endcond
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment