qtrocket/model/Stage.cpp

27 lines
315 B
C++

/// \cond
// C headers
// C++ headers
// 3rd party headers
/// \endcond
// qtrocket headers
#include "Stage.h"
namespace model
{
Stage::Stage(const std::string& inName)
: name(inName)
{}
Stage::~Stage()
{}
void Stage::setMotorModel(const model::MotorModel& motor)
{
mm = motor;
}
} // namespace model