Page MenuHomec4science

OncillaTrunk.cpp
No OneTemporary

File Metadata

Created
Thu, May 23, 10:43

OncillaTrunk.cpp

#include "OncillaTrunk.h"
using namespace std;
namespace cca {
namespace rci {
namespace driver {
OncillaTrunk::OncillaTrunk(std::string name) :
ResourceNode(name), Sensing(), PoseSensing() {
this->_dimension = 1;
}
PosePtr OncillaTrunk::getAbsolutePose() const {
throw std::runtime_error("Not yet implemented.");
}
PosePtr OncillaTrunk::getDisplacement() const {
throw std::runtime_error("Not yet implemented.");
}
PosePtr OncillaTrunk::getAcceleration() const {
throw std::runtime_error("Not yet implemented.");
}
OncillaTrunk::~OncillaTrunk() {
}
std::string OncillaTrunk::print() const {
ostringstream outstream(ostringstream::out);
outstream.precision(3); // Precision when printing double values
outstream << "<Oncilla Trunk>" << endl;
return outstream.str();
}
}
}
}

Event Timeline