X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Tools.cpp;h=5672163dcf06273e50eaa790bec519328784fb9b;hb=0caee92b045249b15dd6df72d52b44335e05cc3f;hp=3148bc274b06024ee92ff0c92168b7826726455b;hpb=ae347a8a8014a15245199a3bb603413628e3f7d4;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Tools.cpp b/src/XGUI/XGUI_Tools.cpp index 3148bc274..5672163dc 100644 --- a/src/XGUI/XGUI_Tools.cpp +++ b/src/XGUI/XGUI_Tools.cpp @@ -1,7 +1,8 @@ #include "XGUI_Tools.h" #include -#include +#include +#include #include @@ -70,4 +71,16 @@ std::string featureInfo(FeaturePtr theFeature) return QString(aStream.str().c_str()).toStdString(); } -} \ No newline at end of file +//****************************************************************** +/*FeaturePtr realFeature(const FeaturePtr theFeature) +{ + if (theFeature->data()) { + return theFeature; + } else { + ObjectPtr aObject = boost::dynamic_pointer_cast(theFeature); + return aObject->featureRef(); + } +}*/ + + +}