Commit 00fe1a5b authored by lw's avatar lw

*** empty log message ***

parent 6a9acb0b
......@@ -121,6 +121,19 @@ char * const wb_orepdbs::name()
return m_o->name;
}
wb_name wb_orepdbs::longName()
{
char str[200];
m_vrep->objectName(this, str);
return wb_name(str);
}
pwr_tTime wb_orepdbs::ohTime() const
{
return m_o->time;
}
bool wb_orepdbs::isOffspringOf(const wb_orep *o) const
{
return false;
......@@ -137,6 +150,11 @@ wb_orep *wb_orepdbs::before(pwr_tStatus *sts) const
return m_vrep->before(sts, (wb_orep*)this);
}
wb_orep *wb_orepdbs::ancestor(pwr_tStatus *sts) const
{
return m_vrep->ancestor(sts, (wb_orep*)this);
}
wb_orep *wb_orepdbs::parent(pwr_tStatus *sts) const
{
return m_vrep->parent(sts, (wb_orep*)this);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment