1 %feature("docstring") gum::Variable
2 "
3 Abstract class used by DiscreteVariable.
4 "
5 
6 %feature("docstring") gum::Variable::description
7 "
8 Returns
9 -------
10 str
11 	the description of the variable
12 "
13 
14 %feature("docstring") gum::Variable::name
15 "
16 Returns
17 -------
18 str
19 	the name of the variable
20 "
21 
22 %feature("docstring") gum::Variable::setDescription
23 "
24 set the description of the variable.
25 
26 Parameters
27 ----------
28 theValue : str
29 	the new description of the variable
30 "
31 
32 %feature("docstring") gum::Variable::setName
33 "
34 sets the name of the variable.
35 
36 Parameters
37 ----------
38 theValue : str
39 	the new description of the variable
40 "
41 
42 %feature("docstring") gum::Variable::clone
43 "
44 Copy factory
45 
46 Returns
47 -------
48 pyAgrum.DiscreteVariable
49 	a pointer on a new copy of this
50 "