Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
sot-core
Commits
cc990385
Commit
cc990385
authored
Jun 21, 2011
by
Florent Lamiraux
Committed by
Florent Lamiraux florent@laas.fr
Jun 21, 2011
Browse files
Merge remote branch 'origin/topic/python' into topic/singleton
Conflicts: src/factory/pool.cpp
parents
e8e51ee0
fafd7e7b
Changes
5
Hide whitespace changes
Inline
Side-by-side
include/sot/core/derivator.hh
View file @
cc990385
...
...
@@ -59,6 +59,7 @@ class Derivator
public:
/* --- CONSTRUCTION --- */
static
std
::
string
getTypeName
(
void
)
{
return
"Unknown"
;
}
virtual
const
std
::
string
&
getClassName
(
void
)
const
{
return
CLASS_NAME
;
}
static
const
std
::
string
CLASS_NAME
;
Derivator
(
const
std
::
string
&
name
)
...
...
@@ -75,7 +76,6 @@ class Derivator
timestepSIN
.
setKeepReference
(
true
);
}
virtual
~
Derivator
(
void
)
{};
public:
/* --- SIGNAL --- */
...
...
include/sot/core/gripper-control.hh
View file @
cc990385
...
...
@@ -112,7 +112,7 @@ class SOTGRIPPERCONTROL_EXPORT GripperControlPlugin
GripperControlPlugin
(
const
std
::
string
&
name
);
virtual
~
GripperControlPlugin
(
void
);
virtual
const
std
::
string
&
getClassName
(
void
)
const
{
return
CLASS_NAME
;
}
public:
/* --- SIGNAL --- */
/* --- INPUTS --- */
...
...
include/sot/core/reader.hh
View file @
cc990385
...
...
@@ -72,7 +72,7 @@ class SOTREADER_EXPORT sotReader
{
public:
static
const
std
::
string
CLASS_NAME
;
virtual
const
std
::
string
&
getClassName
(
void
)
{
return
CLASS_NAME
;
}
virtual
const
std
::
string
&
getClassName
(
void
)
const
{
return
CLASS_NAME
;
}
public:
...
...
include/sot/core/sequencer.hh
View file @
cc990385
...
...
@@ -67,6 +67,7 @@ namespace dynamicgraph {
{
public:
static
const
std
::
string
CLASS_NAME
;
virtual
const
std
::
string
&
getClassName
(
void
)
const
{
return
CLASS_NAME
;
}
public:
class
sotEventAbstract
...
...
src/factory/pool.cpp
View file @
cc990385
...
...
@@ -187,7 +187,6 @@ namespace dynamicgraph {
{
}
PoolStorage
*
PoolStorage
::
getInstance
()
{
if
(
instance_
==
0
)
{
...
...
Write
Preview
Supports
Markdown
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