X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModelHighAPI%2FModelHighAPI_RefAttr.cpp;h=d018517e23f8262bff3c073c0f4e05bc7dd673e0;hb=d2034a988bc73596aab1bb256ddb02ce9ad2bd5a;hp=7b260e5c9bbc6adddb79f72fe1d041805c04da28;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/ModelHighAPI/ModelHighAPI_RefAttr.cpp b/src/ModelHighAPI/ModelHighAPI_RefAttr.cpp index 7b260e5c9..d018517e2 100644 --- a/src/ModelHighAPI/ModelHighAPI_RefAttr.cpp +++ b/src/ModelHighAPI/ModelHighAPI_RefAttr.cpp @@ -14,13 +14,15 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com // #include "ModelHighAPI_RefAttr.h" #include #include +#include #include #include #include "ModelHighAPI_Interface.h" @@ -80,3 +82,13 @@ bool ModelHighAPI_RefAttr::isEmpty() const { return !(myAttribute && myObject); } + +//-------------------------------------------------------------------------------------- +void ModelHighAPI_RefAttr::fillMessage( + const std::shared_ptr& theMessage) const +{ + switch (myVariantType) { + case VT_ATTRIBUTE: theMessage->setMovedAttribute(myAttribute); return; + case VT_OBJECT: theMessage->setMovedObject(myObject); return; + } +}