Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_LogicalFilter.h
index dbb590c491e9eda081ff0608ea7c6d4df0983637..d0ba7c683cff6201db298d3430e8613c7aa4b3d9 100644 (file)
@@ -1,21 +1,23 @@
-// Copyright (C) 2005  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.
+//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-// 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
+//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//  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.com
 //
 #ifndef GEOM_LOGICALFILTER_H
 #define GEOM_LOGICALFILTER_H
@@ -23,7 +25,7 @@
 #include <SUIT_SelectionFilter.h>
 #include <Standard_Macro.hxx>
 
-#include <qptrlist.h>
+#include <QList>
 
 class Standard_EXPORT GEOM_LogicalFilter : public SUIT_SelectionFilter
 {
@@ -31,19 +33,19 @@ public:
   enum { LO_OR, LO_AND, LO_NOT, LO_UNDEFINED };
 
 public:
-  GEOM_LogicalFilter( const QPtrList<SUIT_SelectionFilter>& lst, const int op );
+  GEOM_LogicalFilter( const QList<SUIT_SelectionFilter*>& lst, const int op );
   ~GEOM_LogicalFilter();
 
   virtual bool                   isOk( const SUIT_DataOwner* ) const;
 
-  void                           setFilters( const QPtrList<SUIT_SelectionFilter>& lst );
+  void                           setFilters( const QList<SUIT_SelectionFilter*>& lst );
   void                           setOperation( const int );
-  QPtrList<SUIT_SelectionFilter> getFilters() const;
+  QList<SUIT_SelectionFilter*>   getFilters() const;
   int                            getOperation() const;
 
 private:
-  QPtrList<SUIT_SelectionFilter>  myFilters;
-  int                             myOperation;
+  QList<SUIT_SelectionFilter*>   myFilters;
+  int                            myOperation;
 
 };