Page MenuHomec4science

OncillaL3.cpp
No OneTemporary

File Metadata

Created
Tue, Jun 4, 10:44

OncillaL3.cpp

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

Event Timeline