Salome HOME
Revert "Synchronize adm files"
[modules/gui.git] / src / SOCC / SOCC_Prs.cxx
index a7867e388758ecda0e61afcaaee0e290bca8d629..1b99d89e7871e80ad7c0699e1fb99b001031a9e5 100644 (file)
@@ -1,33 +1,32 @@
-//  SALOME OCCViewer : build OCC Viewer into Salome desktop
+// Copyright (C) 2007-2014  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, or (at your option) any later version.
 //
-//  Copyright (C) 2004  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 
-//  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 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org 
+// 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
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
+//  SALOME OCCViewer : build OCC Viewer into Salome desktop
 //  File   : SOCC_Prs.cxx
 //  Author : Sergey ANIKIN
-//  Module : SALOME
-//  $Header$
 
 #include "SOCC_Prs.h"
-using namespace std;
+
+#include <AIS_InteractiveObject.hxx>
 
 /*!
   Default constructor
@@ -69,12 +68,36 @@ void SOCC_Prs::AddObject( const Handle(AIS_InteractiveObject)& obj )
   myObjects.Append( obj ); 
 }
 
+/*!
+  Prepend interactive object
+*/
+void SOCC_Prs::PrependObject( const Handle(AIS_InteractiveObject)& obj ) 
+{ 
+  myObjects.Prepend( obj ); 
+}
+
+/*!
+  Remove first interactive object
+*/
+void SOCC_Prs::RemoveFirst()
+{
+  myObjects.RemoveFirst();
+}
+
+/*!
+  Remove all interactive objects
+*/
+void SOCC_Prs::Clear()
+{
+  myObjects.Clear();
+}
+
 /*!
   \return 0 if list of the interactive objects is empty [ Reimplemented from SALOME_Prs ]
 */
 bool SOCC_Prs::IsNull() const 
 { 
-  return myObjects.IsEmpty()
+  return myObjects.IsEmpty() == Standard_True;
 }
 
 /*!