X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_IPresentable.h;h=94021ab80f87495362f3754d51781eb459a9400b;hb=7f873aed4bae5a98dca078209699b54276b46fce;hp=b28ed8bb06ed1b451d50ef3d300b5dc893417971;hpb=bcadd40668f422db6c5ade201ac630052db91da9;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_IPresentable.h b/src/GeomAPI/GeomAPI_IPresentable.h index b28ed8bb0..94021ab80 100644 --- a/src/GeomAPI/GeomAPI_IPresentable.h +++ b/src/GeomAPI/GeomAPI_IPresentable.h @@ -1,25 +1,26 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_IPresentable.hxx // Created: 17 July 2014 // Author: Vitaly SMETANNIKOV -#ifndef GeomAPI_IPresentable_HeaderFile -#define GeomAPI_IPresentable_HeaderFile +#ifndef GeomAPI_IPresentable_H_ +#define GeomAPI_IPresentable_H_ #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 - */ - virtual boost::shared_ptr getAISObject( - boost::shared_ptr thePrevious) = 0; + * \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 \ No newline at end of file +#endif