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
27b021c3
Commit
27b021c3
authored
Jul 07, 2010
by
Sebastian Eichelbaum
Browse files
[CHANGE] - added a dynamic loading directive to all modules
parent
08c2e409
Changes
35
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
58 additions
and
1 deletion
+58
-1
src/modules/applyMask/WMApplyMask.cpp
src/modules/applyMask/WMApplyMask.cpp
+2
-1
src/modules/arbitraryRois/WMArbitraryRois.cpp
src/modules/arbitraryRois/WMArbitraryRois.cpp
+3
-0
src/modules/atlasSurfaces/WMAtlasSurfaces.cpp
src/modules/atlasSurfaces/WMAtlasSurfaces.cpp
+3
-0
src/modules/boundingBox/WMBoundingBox.cpp
src/modules/boundingBox/WMBoundingBox.cpp
+3
-0
src/modules/clusterParamDisplay/WMClusterParamDisplay.cpp
src/modules/clusterParamDisplay/WMClusterParamDisplay.cpp
+3
-0
src/modules/clusterSlicer/WMClusterSlicer.cpp
src/modules/clusterSlicer/WMClusterSlicer.cpp
+3
-0
src/modules/contourTree/WMContourTree.cpp
src/modules/contourTree/WMContourTree.cpp
+3
-0
src/modules/coordinateSystem/WMCoordinateSystem.cpp
src/modules/coordinateSystem/WMCoordinateSystem.cpp
+3
-0
src/modules/dataTypeConversion/WMDataTypeConversion.cpp
src/modules/dataTypeConversion/WMDataTypeConversion.cpp
+3
-0
src/modules/detTractClustering/WMDetTractClustering.cpp
src/modules/detTractClustering/WMDetTractClustering.cpp
+3
-0
src/modules/detTractCulling/WMDetTractCulling.cpp
src/modules/detTractCulling/WMDetTractCulling.cpp
+3
-0
src/modules/deterministicFTMori/WMDeterministicFTMori.cpp
src/modules/deterministicFTMori/WMDeterministicFTMori.cpp
+3
-0
src/modules/distanceMap/WMDistanceMap.cpp
src/modules/distanceMap/WMDistanceMap.cpp
+3
-0
src/modules/distanceMap/WMDistanceMapIsosurface.cpp
src/modules/distanceMap/WMDistanceMapIsosurface.cpp
+3
-0
src/modules/eegView/WMEEGView.cpp
src/modules/eegView/WMEEGView.cpp
+2
-0
src/modules/fiberSelection/WMFiberSelection.cpp
src/modules/fiberSelection/WMFiberSelection.cpp
+3
-0
src/modules/fiberTransform/WMFiberTransform.cpp
src/modules/fiberTransform/WMFiberTransform.cpp
+3
-0
src/modules/gaussFiltering/WMGaussFiltering.cpp
src/modules/gaussFiltering/WMGaussFiltering.cpp
+3
-0
src/modules/hud/WMHud.cpp
src/modules/hud/WMHud.cpp
+3
-0
src/modules/imageExtractor/WMImageExtractor.cpp
src/modules/imageExtractor/WMImageExtractor.cpp
+3
-0
No files found.
src/modules/applyMask/WMApplyMask.cpp
View file @
27b021c3
...
...
@@ -38,7 +38,8 @@
#include "WMApplyMask.h"
#include "apply_mask.xpm"
W_LOADABLE_MODULE
(
WMApplyMask
);
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMApplyMask
)
WMApplyMask
::
WMApplyMask
()
:
WModule
()
...
...
src/modules/arbitraryRois/WMArbitraryRois.cpp
View file @
27b021c3
...
...
@@ -45,6 +45,9 @@
#include "WMArbitraryRois.h"
#include "arbitraryROI.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMArbitraryRois
)
WMArbitraryRois
::
WMArbitraryRois
()
:
WModule
(),
m_textureChanged
(
true
),
...
...
src/modules/atlasSurfaces/WMAtlasSurfaces.cpp
View file @
27b021c3
...
...
@@ -44,6 +44,9 @@
#include "WMAtlasSurfaces.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMAtlasSurfaces
)
WMAtlasSurfaces
::
WMAtlasSurfaces
()
:
WModule
(),
m_dataSet
(),
...
...
src/modules/boundingBox/WMBoundingBox.cpp
View file @
27b021c3
...
...
@@ -41,6 +41,9 @@
#include "WMBoundingBox.h"
#include "boundingbox.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMBoundingBox
)
WMBoundingBox
::
WMBoundingBox
()
:
WModule
()
{
...
...
src/modules/clusterParamDisplay/WMClusterParamDisplay.cpp
View file @
27b021c3
...
...
@@ -29,6 +29,9 @@
#include "../../kernel/WKernel.h"
#include "WMClusterParamDisplay.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMClusterParamDisplay
)
WMClusterParamDisplay
::
WMClusterParamDisplay
()
:
WModuleContainer
(
"Cluster Param Display"
,
"Displays various parameters on a cluster surface."
)
{
...
...
src/modules/clusterSlicer/WMClusterSlicer.cpp
View file @
27b021c3
...
...
@@ -33,6 +33,9 @@
#include "../../graphicsEngine/WGEGeodeUtils.h"
#include "WMClusterSlicer.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMClusterSlicer
)
WMClusterSlicer
::
WMClusterSlicer
()
:
WModule
(),
m_rootNode
(
osg
::
ref_ptr
<
WGEGroupNode
>
(
new
WGEGroupNode
()
)
)
...
...
src/modules/contourTree/WMContourTree.cpp
View file @
27b021c3
...
...
@@ -36,6 +36,9 @@
#include "../../kernel/WKernel.h"
#include "WMContourTree.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMContourTree
)
WMContourTree
::
WMContourTree
()
:
WModule
()
{
...
...
src/modules/coordinateSystem/WMCoordinateSystem.cpp
View file @
27b021c3
...
...
@@ -44,6 +44,9 @@
#include "WMCoordinateSystem.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMCoordinateSystem
)
WMCoordinateSystem
::
WMCoordinateSystem
()
:
WModule
(),
m_dirty
(
false
),
m_drawOffset
(
0.02
)
{
...
...
src/modules/dataTypeConversion/WMDataTypeConversion.cpp
View file @
27b021c3
...
...
@@ -41,6 +41,9 @@
#include "WMDataTypeConversion.h"
#include "datatypeconversion.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMDataTypeConversion
)
WMDataTypeConversion
::
WMDataTypeConversion
()
:
WModule
()
{
...
...
src/modules/detTractClustering/WMDetTractClustering.cpp
View file @
27b021c3
...
...
@@ -52,6 +52,9 @@
#include "detTractClustering.xpm"
#include "WMDetTractClustering.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMDetTractClustering
)
WMDetTractClustering
::
WMDetTractClustering
()
:
WModule
(),
m_lastTractsSize
(
0
),
...
...
src/modules/detTractCulling/WMDetTractCulling.cpp
View file @
27b021c3
...
...
@@ -42,6 +42,9 @@
#include "detTractCulling.xpm"
#include "WMDetTractCulling.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMDetTractCulling
)
WMDetTractCulling
::
WMDetTractCulling
()
:
WModule
(),
m_recompute
(
new
WCondition
()
)
...
...
src/modules/deterministicFTMori/WMDeterministicFTMori.cpp
View file @
27b021c3
...
...
@@ -38,6 +38,9 @@
#include "WMDeterministicFTMori.h"
#include "moriTracking.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMDeterministicFTMori
)
WMDeterministicFTMori
::
WMDeterministicFTMori
()
:
WModule
(),
m_dataSet
(),
...
...
src/modules/distanceMap/WMDistanceMap.cpp
View file @
27b021c3
...
...
@@ -37,6 +37,9 @@
#include "../../common/WProgress.h"
#include "../../common/WAssert.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMDistanceMap
)
WMDistanceMap
::
WMDistanceMap
()
:
WModule
()
{
...
...
src/modules/distanceMap/WMDistanceMapIsosurface.cpp
View file @
27b021c3
...
...
@@ -36,6 +36,9 @@
#include "../../dataHandler/WSubject.h"
#include "../../dataHandler/WGridRegular3D.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMDistanceMapIsosurface
)
WMDistanceMapIsosurface
::
WMDistanceMapIsosurface
()
:
WModuleContainer
(
"Distance Map Isosurface"
,
"Computes a smoothed version of the dataset"
...
...
src/modules/eegView/WMEEGView.cpp
View file @
27b021c3
...
...
@@ -48,6 +48,8 @@
#include "WScaleTransformCallback.h"
#include "eeg.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMEEGView
)
WMEEGView
::
WMEEGView
()
:
WModule
(),
...
...
src/modules/fiberSelection/WMFiberSelection.cpp
View file @
27b021c3
...
...
@@ -40,6 +40,9 @@
#include "WMFiberSelection.h"
#include "fiberSelection.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMFiberSelection
)
WMFiberSelection
::
WMFiberSelection
()
:
WModule
()
{
...
...
src/modules/fiberTransform/WMFiberTransform.cpp
View file @
27b021c3
...
...
@@ -41,6 +41,9 @@
#include "WMFiberTransform.h"
#include "fiberTransform.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMFiberTransform
)
WMFiberTransform
::
WMFiberTransform
()
:
WModule
(),
m_recompute
(
new
WCondition
()
)
...
...
src/modules/gaussFiltering/WMGaussFiltering.cpp
View file @
27b021c3
...
...
@@ -41,6 +41,9 @@
#include "WMGaussFiltering.h"
#include "gaussfiltering.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMGaussFiltering
)
WMGaussFiltering
::
WMGaussFiltering
()
:
WModule
()
{
...
...
src/modules/hud/WMHud.cpp
View file @
27b021c3
...
...
@@ -34,6 +34,9 @@
#include "WMHud.h"
#include "hud.xpm"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMHud
)
WMHud
::
WMHud
()
{
}
...
...
src/modules/imageExtractor/WMImageExtractor.cpp
View file @
27b021c3
...
...
@@ -34,6 +34,9 @@
#include "imageExtractor.xpm"
#include "WMImageExtractor.h"
// This line is needed by the module loader to actually find your module.
W_LOADABLE_MODULE
(
WMImageExtractor
)
WMImageExtractor
::
WMImageExtractor
()
:
WModule
()
{
...
...
Prev
1
2
Next
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