X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_IPresentable.h;h=94021ab80f87495362f3754d51781eb459a9400b;hb=60e95a5502a6940c6c27ce5d561b3c684b0b0a4f;hp=c300c1b421e6594c40a8b5f9f3f139bc8ef4ba07;hpb=a85c123c5bc7c48588a5cd648110d66ae1544f8c;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_IPresentable.h b/src/GeomAPI/GeomAPI_IPresentable.h index c300c1b42..94021ab80 100644 --- a/src/GeomAPI/GeomAPI_IPresentable.h +++ b/src/GeomAPI/GeomAPI_IPresentable.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_IPresentable.hxx // Created: 17 July 2014 // Author: Vitaly SMETANNIKOV @@ -8,17 +10,17 @@ #include "GeomAPI_AISObject.h" /** -* A class which defines an interface of object which is able to create its own presentation -*/ + * A class which defines an interface of object which is able to create its own presentation + */ class GeomAPI_IPresentable { -public: + public: /** Returns the AIS preview - * \param thePrevious - defines a presentation if it was created previously - */ + * \param thePrevious - defines a presentation if it was created previously + */ virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious) = 0; }; -typedef boost::shared_ptr GeomPresentablePtr; +typedef std::shared_ptr GeomPresentablePtr; #endif