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
3b124b55
Commit
3b124b55
authored
Apr 19, 2010
by
Sebastian Eichelbaum
Browse files
[STYLE]
parent
76aee645
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
15 additions
and
15 deletions
+15
-15
src/kernel/WModuleConnector.cpp
src/kernel/WModuleConnector.cpp
+1
-1
src/kernel/WModuleConnector.h
src/kernel/WModuleConnector.h
+2
-2
src/kernel/WModuleInputConnector.cpp
src/kernel/WModuleInputConnector.cpp
+1
-1
src/kernel/WModuleInputConnector.h
src/kernel/WModuleInputConnector.h
+1
-1
src/kernel/WModuleInputData.h
src/kernel/WModuleInputData.h
+1
-1
src/kernel/WModuleInputForwardData.h
src/kernel/WModuleInputForwardData.h
+1
-1
src/kernel/WModuleOutputConnector.cpp
src/kernel/WModuleOutputConnector.cpp
+1
-1
src/kernel/WModuleOutputConnector.h
src/kernel/WModuleOutputConnector.h
+1
-1
src/kernel/WModuleOutputData.h
src/kernel/WModuleOutputData.h
+1
-1
src/kernel/WModuleOutputForwardData.h
src/kernel/WModuleOutputForwardData.h
+1
-1
src/modules/dataTypeConversion/WMDataTypeConversion.cpp
src/modules/dataTypeConversion/WMDataTypeConversion.cpp
+2
-2
src/modules/gaussFiltering/WMGaussFiltering.cpp
src/modules/gaussFiltering/WMGaussFiltering.cpp
+2
-2
No files found.
src/kernel/WModuleConnector.cpp
View file @
3b124b55
...
...
@@ -43,7 +43,7 @@
#include "WModuleConnector.h"
WModuleConnector
::
WModuleConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
,
std
::
string
description
)
:
WModuleConnector
::
WModuleConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
,
std
::
string
description
)
:
boost
::
enable_shared_from_this
<
WModuleConnector
>
()
{
// initialize members
...
...
src/kernel/WModuleConnector.h
View file @
3b124b55
...
...
@@ -55,7 +55,7 @@ public:
* \param name The name of this connector.
* \param description Short description of this connector.
*/
WModuleConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
);
WModuleConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
);
/**
* Destructor.
...
...
@@ -205,7 +205,7 @@ protected:
/**
* The Module this connector belongs to
*/
boost
::
shared_ptr
<
WModule
>
m_module
;
boost
::
shared_ptr
<
WModule
>
m_module
;
/**
* Gets called whenever a connector gets connected to the specified input.
...
...
src/kernel/WModuleInputConnector.cpp
View file @
3b124b55
...
...
@@ -31,7 +31,7 @@
#include "WModuleInputConnector.h"
WModuleInputConnector
::
WModuleInputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
,
std
::
string
description
)
:
WModuleInputConnector
::
WModuleInputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
,
std
::
string
description
)
:
WModuleConnector
(
module
,
name
,
description
)
{
// initialize members
...
...
src/kernel/WModuleInputConnector.h
View file @
3b124b55
...
...
@@ -47,7 +47,7 @@ public:
* \param name The name of this connector.
* \param description Short description of this connector.
*/
WModuleInputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
);
WModuleInputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
);
/**
* Destructor.
...
...
src/kernel/WModuleInputData.h
View file @
3b124b55
...
...
@@ -57,7 +57,7 @@ public:
* \param name The name of this connector.
* \param description Short description of this connector.
*/
WModuleInputData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
WModuleInputData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
:
WModuleInputConnector
(
module
,
name
,
description
)
{
};
...
...
src/kernel/WModuleInputForwardData.h
View file @
3b124b55
...
...
@@ -51,7 +51,7 @@ public:
* \param name The name of this connector.
* \param description Short description of this connector.
*/
WModuleInputForwardData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
WModuleInputForwardData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
:
WModuleInputData
<
T
>
(
module
,
name
,
description
)
{
// initialize the output data connector
...
...
src/kernel/WModuleOutputConnector.cpp
View file @
3b124b55
...
...
@@ -34,7 +34,7 @@
#include "WModuleOutputConnector.h"
WModuleOutputConnector
::
WModuleOutputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
,
std
::
string
description
)
:
WModuleOutputConnector
::
WModuleOutputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
,
std
::
string
description
)
:
WModuleConnector
(
module
,
name
,
description
)
{
// initialize members
...
...
src/kernel/WModuleOutputConnector.h
View file @
3b124b55
...
...
@@ -54,7 +54,7 @@ public:
* \param name The name of this connector.
* \param description Short description of this connector.
*/
WModuleOutputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
);
WModuleOutputConnector
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
);
/**
* Destructor.
...
...
src/kernel/WModuleOutputData.h
View file @
3b124b55
...
...
@@ -55,7 +55,7 @@ public:
* \param name The name of this connector.
* \param description Short description of this connector.
*/
WModuleOutputData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
WModuleOutputData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
:
WModuleOutputConnector
(
module
,
name
,
description
)
{
m_data
=
boost
::
shared_ptr
<
T
>
();
...
...
src/kernel/WModuleOutputForwardData.h
View file @
3b124b55
...
...
@@ -51,7 +51,7 @@ public:
* \param name The name of this connector.
* \param description Short description of this connector.
*/
WModuleOutputForwardData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
WModuleOutputForwardData
(
boost
::
shared_ptr
<
WModule
>
module
,
std
::
string
name
=
""
,
std
::
string
description
=
""
)
:
WModuleOutputData
<
T
>
(
module
,
name
,
description
)
{
// initialize the output data connector
...
...
src/modules/dataTypeConversion/WMDataTypeConversion.cpp
View file @
3b124b55
...
...
@@ -54,9 +54,9 @@ WMDataTypeConversion::~WMDataTypeConversion()
removeConnectors
();
}
boost
::
shared_ptr
<
WModule
>
WMDataTypeConversion
::
factory
()
const
boost
::
shared_ptr
<
WModule
>
WMDataTypeConversion
::
factory
()
const
{
return
boost
::
shared_ptr
<
WModule
>
(
new
WMDataTypeConversion
()
);
return
boost
::
shared_ptr
<
WModule
>
(
new
WMDataTypeConversion
()
);
}
const
char
**
WMDataTypeConversion
::
getXPMIcon
()
const
...
...
src/modules/gaussFiltering/WMGaussFiltering.cpp
View file @
3b124b55
...
...
@@ -54,9 +54,9 @@ WMGaussFiltering::~WMGaussFiltering()
removeConnectors
();
}
boost
::
shared_ptr
<
WModule
>
WMGaussFiltering
::
factory
()
const
boost
::
shared_ptr
<
WModule
>
WMGaussFiltering
::
factory
()
const
{
return
boost
::
shared_ptr
<
WModule
>
(
new
WMGaussFiltering
()
);
return
boost
::
shared_ptr
<
WModule
>
(
new
WMGaussFiltering
()
);
}
const
char
**
WMGaussFiltering
::
getXPMIcon
()
const
...
...
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