Salome HOME
Merge from BR_siman_phase1 14/02/2013
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_LogicalFilter.h
index 55e64ef618f2650ad69cf87c7ae9f140a8483811..f4e2708f4599d439974a8fd507aa4b8979a698cf 100644 (file)
@@ -1,29 +1,52 @@
+// Copyright (C) 2007-2012  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
+// 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
 
 #include <SUIT_SelectionFilter.h>
+#include <Standard_Macro.hxx>
 
-#include <qptrlist.h>
+#include <QList>
 
-class GEOM_LogicalFilter : public SUIT_SelectionFilter
+class Standard_EXPORT GEOM_LogicalFilter : public SUIT_SelectionFilter
 {
 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;
 
 };