Salome HOME
Moved some functionality to VTKViewer_Utilities.h
[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 using namespace std;
31
32 //==========================================================
33 /*!
34  *  Plot2d_Prs::Plot2d_Prs
35  *  Default constructor
36  */
37 //==========================================================
38 Plot2d_Prs::Plot2d_Prs()  
39 {
40 }
41
42 //==========================================================
43 /*!
44  *  Plot2d_Prs::Plot2d_Prs
45  *  Standard constructor
46  */
47 //==========================================================
48 Plot2d_Prs::Plot2d_Prs( const Plot2d_Curve* obj )
49
50   AddObject( obj ); 
51 }
52
53 //==========================================================
54 /*!
55  *  Plot2d_Prs::~Plot2d_Prs
56  *  Destructor
57  */
58 //==========================================================
59 Plot2d_Prs::~Plot2d_Prs()
60
61   myObjects.clear(); 
62 }
63
64 //==========================================================
65 /*!
66  *  Plot2d_Prs::GetObjects
67  *  Get curves list
68  */
69 //==========================================================
70 Plot2d_CurveContainer Plot2d_Prs::GetObjects() const 
71
72   return myObjects; 
73 }
74
75 //==========================================================
76 /*!
77  *  Plot2d_Prs::AddObject
78  *  Add curbe
79  */
80 //==========================================================
81 void Plot2d_Prs::AddObject( const Plot2d_Curve* obj )
82
83   myObjects.addCurve( (Plot2d_Curve*)obj ); 
84 }
85
86 //==========================================================
87 /*!
88  *  Plot2d_Prs::IsNull
89  *  Return 0 if list of the curves is empty
90  *  [ Reimplemented from SALOME_Prs ]
91  */
92 //==========================================================
93 bool Plot2d_Prs::IsNull() const 
94
95   return myObjects.isEmpty(); 
96 }