#include "PartFrame.h" #include "MarkerFrame.h" #include "EndFramec.h" #include "EndFrameqc.h" using namespace MbD; MarkerFrame::MarkerFrame() { auto endFrm = std::make_shared(); std::string str = "EndFrame1"; endFrm->setName(str); this->addEndFrame(endFrm); } void MarkerFrame::setPartFrame(std::shared_ptr partFrm) { partFrame = partFrm; } std::shared_ptr MarkerFrame::getPartFrame() { return partFrame.lock(); } void MarkerFrame::setrpmp(FullColDptr x) { rpmp->copy(x); } void MarkerFrame::setaApm(FullMatDptr x) { aApm->copy(x); } void MarkerFrame::addEndFrame(std::shared_ptr endFrm) { endFrames->push_back(endFrm); }