Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
4e570fde
Commit
4e570fde
authored
Sep 14, 2010
by
Sebastian Eichelbaum
Browse files
[STYLE]
parent
141895b4
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
18 additions
and
5 deletions
+18
-5
src/common/datastructures/WUnionFind.cpp
src/common/datastructures/WUnionFind.cpp
+1
-0
src/common/math/WLine.cpp
src/common/math/WLine.cpp
+1
-0
src/common/test/WThreadedFunction_test.h
src/common/test/WThreadedFunction_test.h
+2
-0
src/common/test/WWorkerThread_test.h
src/common/test/WWorkerThread_test.h
+2
-0
src/dataHandler/WEEG2Segment.cpp
src/dataHandler/WEEG2Segment.cpp
+1
-0
src/dataHandler/WFiberAccumulator.cpp
src/dataHandler/WFiberAccumulator.cpp
+1
-0
src/dataHandler/WFiberAccumulator.h
src/dataHandler/WFiberAccumulator.h
+2
-2
src/dataHandler/WThreadedTrackingFunction.cpp
src/dataHandler/WThreadedTrackingFunction.cpp
+1
-0
src/dataHandler/datastructures/WJoinContourTree.cpp
src/dataHandler/datastructures/WJoinContourTree.cpp
+1
-0
src/dataHandler/datastructures/WValueSetHistogram.cpp
src/dataHandler/datastructures/WValueSetHistogram.cpp
+1
-0
src/graphicsEngine/WGECamera.cpp
src/graphicsEngine/WGECamera.cpp
+2
-0
src/graphicsEngine/WGEGeometryUtils.cpp
src/graphicsEngine/WGEGeometryUtils.cpp
+1
-0
src/kernel/WModuleFactory.cpp
src/kernel/WModuleFactory.cpp
+2
-1
src/modules/fiberResampling/WMFiberResampling.cpp
src/modules/fiberResampling/WMFiberResampling.cpp
+0
-2
No files found.
src/common/datastructures/WUnionFind.cpp
View file @
4e570fde
...
...
@@ -25,6 +25,7 @@
#include <algorithm>
#include <map>
#include <set>
#include <string>
#include <vector>
#include <boost/shared_ptr.hpp>
...
...
src/common/math/WLine.cpp
View file @
4e570fde
...
...
@@ -24,6 +24,7 @@
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include "../WLimits.h"
...
...
src/common/test/WThreadedFunction_test.h
View file @
4e570fde
...
...
@@ -25,6 +25,8 @@
#ifndef WTHREADEDFUNCTION_TEST_H
#define WTHREADEDFUNCTION_TEST_H
#include <string>
#include <cxxtest/TestSuite.h>
#include "../WThreadedFunction.h"
...
...
src/common/test/WWorkerThread_test.h
View file @
4e570fde
...
...
@@ -25,6 +25,8 @@
#ifndef WWORKERTHREAD_TEST_H
#define WWORKERTHREAD_TEST_H
#include <string>
#include <cxxtest/TestSuite.h>
#include "../WWorkerThread.h"
...
...
src/dataHandler/WEEG2Segment.cpp
View file @
4e570fde
...
...
@@ -25,6 +25,7 @@
#include <cstddef>
#include <sstream>
#include <string>
#include <boost/shared_ptr.hpp>
...
...
src/dataHandler/WFiberAccumulator.cpp
View file @
4e570fde
...
...
@@ -23,6 +23,7 @@
//---------------------------------------------------------------------------
#include <fstream>
#include <string>
#include <vector>
#include "../../common/WAssert.h"
...
...
src/dataHandler/WFiberAccumulator.h
View file @
4e570fde
...
...
@@ -38,9 +38,9 @@
/**
* A class that encapsulates the data needed to construct a WDataSetFibers.
*/
class
OWDATAHANDLER_EXPORT
WFiberAccumulator
class
OWDATAHANDLER_EXPORT
WFiberAccumulator
// NOLINT
{
public:
public:
/**
* Constructor.
...
...
src/dataHandler/WThreadedTrackingFunction.cpp
View file @
4e570fde
...
...
@@ -23,6 +23,7 @@
//---------------------------------------------------------------------------
#include <limits>
#include <string>
#include <vector>
#include <boost/math/special_functions/fpclassify.hpp>
...
...
src/dataHandler/datastructures/WJoinContourTree.cpp
View file @
4e570fde
...
...
@@ -24,6 +24,7 @@
#include <algorithm>
#include <set>
#include <string>
#include <vector>
#include "../../common/WStringUtils.h"
...
...
src/dataHandler/datastructures/WValueSetHistogram.cpp
View file @
4e570fde
...
...
@@ -25,6 +25,7 @@
#include <algorithm>
#include <cstring> // memset()
#include <numeric>
#include <string>
#include <utility>
#include "../../common/WAssert.h"
...
...
src/graphicsEngine/WGECamera.cpp
View file @
4e570fde
...
...
@@ -22,6 +22,8 @@
//
//---------------------------------------------------------------------------
#include <string>
#include "exceptions/WGEInitFailed.h"
#include "WGECamera.h"
...
...
src/graphicsEngine/WGEGeometryUtils.cpp
View file @
4e570fde
...
...
@@ -23,6 +23,7 @@
//---------------------------------------------------------------------------
#include <map>
#include <string>
#include <vector>
#include <osg/Array>
...
...
src/kernel/WModuleFactory.cpp
View file @
4e570fde
...
...
@@ -84,7 +84,8 @@ void WModuleFactory::load()
// that should not happen. Names should not occur multiple times since they are unique
if
(
names
.
count
(
(
*
listIter
)
->
getName
()
)
)
{
throw
WPrototypeNotUnique
(
std
::
string
(
"Module
\"
"
+
(
*
listIter
)
->
getName
()
+
"
\"
is not unique. Modules have to have a unique name."
)
);
throw
WPrototypeNotUnique
(
std
::
string
(
"Module
\"
"
+
(
*
listIter
)
->
getName
()
+
"
\"
is not unique. Modules have to have a unique name."
)
);
}
names
.
insert
(
(
*
listIter
)
->
getName
()
);
...
...
src/modules/fiberResampling/WMFiberResampling.cpp
View file @
4e570fde
...
...
@@ -177,9 +177,7 @@ void WMFiberResampling::moduleMain()
current
[
2
]
=
(
*
fibVerts
)[
(
3
*
k
)
+
sidx
+
2
];
// get next parameter value:
}
}
// create final dataset and forward the data
...
...
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