Page MenuHomec4science

OncillaL4.cpp
No OneTemporary

File Metadata

Created
Sun, May 12, 15:42

OncillaL4.cpp

#include "OncillaL4.h"
using namespace std;
namespace rci {
namespace oncilla {
OncillaL4::OncillaL4(const std::string & name)
: rci::ResourceNode(name)
, rci::Sensing()
, rci::ForceSensing() {
}
ForcesPtr OncillaL4::getForces() const {
throw std::runtime_error("Not yet implemented.");
}
OncillaL4::~OncillaL4() {
}
std::string OncillaL4::print() const {
ostringstream outstream(ostringstream::out);
outstream.precision(3); // Precision when printing double values
outstream << "<Oncilla Foot>" << endl;
return outstream.str();
}
}
}

Event Timeline