X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPlot2d%2FPlot2d_Prs.h;h=8e92ef9198296c9694b9940a8819b45b6d98f132;hb=efe3cdefadc31ad9cdaa9fd7fc368e2931cebdf1;hp=2f98aadeba0422734a4604e33a7c554cf920481e;hpb=399155730966dfc225fbb24f66204b05664385f2;p=modules%2Fgui.git diff --git a/src/Plot2d/Plot2d_Prs.h b/src/Plot2d/Plot2d_Prs.h index 2f98aadeb..8e92ef919 100755 --- a/src/Plot2d/Plot2d_Prs.h +++ b/src/Plot2d/Plot2d_Prs.h @@ -1,46 +1,51 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. -// -// This library is distributed in the hope that it will be useful -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software +// You should have received a copy of the GNU Lesser General Public +// 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 // + #ifndef PLOT2D_PRS_H #define PLOT2D_PRS_H #include "Plot2d.h" -#include "Plot2d_Curve.h" +#include "Plot2d_Object.h" class PLOT2D_EXPORT Plot2d_Prs { public: Plot2d_Prs( bool theDelete = false ); - Plot2d_Prs( const Plot2d_Curve* obj, bool theDelete = false ); - ~Plot2d_Prs(); + Plot2d_Prs( Plot2d_Object* obj, bool theDelete = false ); + virtual ~Plot2d_Prs(); - curveList getCurves() const; - void AddObject( const Plot2d_Curve* obj ); + objectList getObjects() const; + void AddObject( Plot2d_Object* obj ); - bool IsNull() const; + bool IsNull() const; - bool isSecondY() const; + bool isSecondY() const; - void setAutoDel(bool theDel); + void setAutoDel(bool theDel); protected: - curveList myCurves; - bool mySecondY; + objectList myObjects; + bool mySecondY; + bool myIsAutoDel; }; -#endif +#endif // PLOT2D_PRS_H