Salome HOME
2db19dfc4739d7f82cd69d2a40ea4ebff9c6537c
[modules/kernel.git] / src / Plot2d / Plot2d_Prs.cxx
1 //  SALOME OCCViewer : build OCC Viewer into Salome desktop
2 //
3 //  Copyright (C) 2004  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : Plot2d_Prs.cxx
25 //  Author : Sergey ANIKIN
26 //  Module : SALOME
27 //  $Header$
28
29 #include "Plot2d_Prs.h"
30
31 //==========================================================
32 /*!
33  *  Plot2d_Prs::Plot2d_Prs
34  *  Default constructor
35  */
36 //==========================================================
37 Plot2d_Prs::Plot2d_Prs()  
38 {
39 }
40
41 //==========================================================
42 /*!
43  *  Plot2d_Prs::Plot2d_Prs
44  *  Standard constructor
45  */
46 //==========================================================
47 Plot2d_Prs::Plot2d_Prs( const Plot2d_Curve* obj )
48
49   AddObject( obj ); 
50 }
51
52 //==========================================================
53 /*!
54  *  Plot2d_Prs::~Plot2d_Prs
55  *  Destructor
56  */
57 //==========================================================
58 Plot2d_Prs::~Plot2d_Prs()
59
60   myObjects.clear(); 
61 }
62
63 //==========================================================
64 /*!
65  *  Plot2d_Prs::GetObjects
66  *  Get curves list
67  */
68 //==========================================================
69 Plot2d_CurveContainer Plot2d_Prs::GetObjects() const 
70
71   return myObjects; 
72 }
73
74 //==========================================================
75 /*!
76  *  Plot2d_Prs::AddObject
77  *  Add curbe
78  */
79 //==========================================================
80 void Plot2d_Prs::AddObject( const Plot2d_Curve* obj )
81
82   myObjects.addCurve( (Plot2d_Curve*)obj ); 
83 }
84
85 //==========================================================
86 /*!
87  *  Plot2d_Prs::IsNull
88  *  Return 0 if list of the curves is empty
89  *  [ Reimplemented from SALOME_Prs ]
90  */
91 //==========================================================
92 bool Plot2d_Prs::IsNull() const 
93
94   return myObjects.isEmpty(); 
95 }