SHAPER 9.16.0
FiltersAPI_Filter.h
1// Copyright (C) 2014-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef FILTERSAPI_FILTER_H_
21#define FILTERSAPI_FILTER_H_
22
23#include "FiltersAPI.h"
24#include "FiltersAPI_Argument.h"
25
26#include <ModelHighAPI_Dumper.h>
27#include <ModelHighAPI_Selection.h>
28
30
36{
37public:
38 FILTERSAPI_EXPORT
40 const std::string& theName,
41 const bool theRevertFilter = false,
42 const std::list<FiltersAPI_Argument>& theArguments = std::list<FiltersAPI_Argument>());
43
44 // Internal constructor based on filter arguments
45 FILTERSAPI_EXPORT
46 FiltersAPI_Filter(const std::string& theName,
47 const std::list<std::shared_ptr<ModelAPI_Attribute> >& theArguments);
48
50 FILTERSAPI_EXPORT
51 virtual ~FiltersAPI_Filter();
52
53 const std::string& name() const { return myName; }
54 bool isReversed() const { return myReversed; }
55 const std::list<FiltersAPI_Argument>& arguments() const { return myFilterArguments; }
56
58 FILTERSAPI_EXPORT
59 virtual void dump(ModelHighAPI_Dumper& theDumper) const;
60
61private:
62 std::string myName;
63 bool myReversed;
64 std::list<FiltersAPI_Argument> myFilterArguments;
65};
66
67typedef std::shared_ptr<FiltersAPI_Filter> FilterAPIPtr;
68
70FILTERSAPI_EXPORT FilterAPIPtr
71addFilter(const std::string& name = std::string(),
72 const bool exclude = false,
73 const std::list<FiltersAPI_Argument>& args = std::list<FiltersAPI_Argument>());
74
75#endif
Interface for the Filter.
Definition: FiltersAPI_Filter.h:36
virtual ~FiltersAPI_Filter()
Destructor.
Definition: FiltersAPI_Filter.cpp:86
virtual void dump(ModelHighAPI_Dumper &theDumper) const
Dump wrapped feature.
Definition: FiltersAPI_Filter.cpp:90
Generic attribute of the Object.
Definition: ModelAPI_Attribute.h:34
Dump engine for the model.
Definition: ModelHighAPI_Dumper.h:81