Salome HOME
7316785c1dd7e22aa681a64b10de7791c15522cf
[modules/shaper.git] / src / FiltersAPI / FiltersAPI_Argument.h
1 // Copyright (C) 2014-2022  CEA/DEN, EDF R&D
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_ARGUMENT_H_
21 #define FILTERSAPI_ARGUMENT_H_
22
23 #include "FiltersAPI.h"
24
25 #include <ModelAPI_AttributeSelection.h>
26 #include <ModelHighAPI_Double.h>
27
28 #include <ModelHighAPI_Dumper.h>
29 #include <ModelHighAPI_Selection.h>
30
31 #include <limits>
32
33 /**\class FiltersAPI_Argument
34  * \ingroup CPPHighAPI
35  * \brief Argument of the Filter
36  */
37 class FiltersAPI_Argument
38 {
39 public:
40   FILTERSAPI_EXPORT FiltersAPI_Argument();
41
42   FILTERSAPI_EXPORT
43   FiltersAPI_Argument(const bool theValue);
44
45   FILTERSAPI_EXPORT
46   FiltersAPI_Argument(const ModelHighAPI_Double theValue);
47
48   FILTERSAPI_EXPORT
49   FiltersAPI_Argument(const double& theValue);
50
51   FILTERSAPI_EXPORT
52   FiltersAPI_Argument(const std::string& theValue);
53
54   FILTERSAPI_EXPORT
55   FiltersAPI_Argument(const ModelHighAPI_Selection& theSelection);
56
57   FILTERSAPI_EXPORT
58   FiltersAPI_Argument(const AttributeSelectionPtr& theSelection);
59
60   /// Destructor
61   FILTERSAPI_EXPORT
62   virtual ~FiltersAPI_Argument();
63
64   const bool boolean() const { return myBoolean; }
65   const std::string& string() const { return myValue; }
66   const ModelHighAPI_Selection& selection() const { return mySelection; }
67   const ModelHighAPI_Double& dble() const { return myDouble; }
68   /// Dump wrapped feature
69   FILTERSAPI_EXPORT
70   void dump(ModelHighAPI_Dumper& theDumper) const;
71
72 private:
73   bool myBoolean;
74   ModelHighAPI_Double myDouble  = std::numeric_limits<double>::lowest() ;
75   std::string myValue;
76   ModelHighAPI_Selection mySelection;
77   AttributeSelectionPtr mySelectionAttr;
78 };
79
80 #endif