![]() |
PhoenixPresentation
2.0.0
Set of cmake function to automate presentation generation
|
Nested string or variable call. More...
#include <PNestedCall.h>
Public Member Functions | |
bool & | getIsVarCall () |
Gets the isVarCall of the PNestedStr. More... | |
bool | getIsVarCall () const |
Gets the isVarCall of the PNestedStr. More... | |
PString & | getValue () |
Gets the value of the PNestedStr. More... | |
const PString & | getValue () const |
Gets the value of the PNestedStr. More... | |
PNestedStr & | operator= (const PNestedStr &other) |
Operator = of class PNestedStr. More... | |
PNestedStr () | |
Constructor of class PNestedStr. More... | |
PNestedStr (const PNestedStr &other) | |
Copy Constructor of class PNestedStr. More... | |
void | setIsVarCall (bool isVarCall) |
Sets the isVarCall of the PNestedStr. More... | |
void | setValue (const PString &value) |
Sets the value of the PNestedStr. More... | |
virtual | ~PNestedStr () |
Destructor of class PNestedStr. More... | |
Protected Member Functions | |
void | copyPNestedStr (const PNestedStr &other) |
Copy Function of class PNestedStr. More... | |
Private Attributes | |
bool | p_isVarCall |
True if the PNestedStr calls a variable. More... | |
PString | p_value |
String which can be a call to an other variable or a simple string. More... | |
Nested string or variable call.
Definition at line 14 of file PNestedCall.h.
PNestedStr::PNestedStr | ( | ) |
PNestedStr::PNestedStr | ( | const PNestedStr & | other | ) |
Copy Constructor of class PNestedStr.
other | : PNestedStr we want ot copy |
Definition at line 18 of file PNestedCall.cpp.
References copyPNestedStr().
|
virtual |
|
protected |
Copy Function of class PNestedStr.
other | : PNestedStr we want ot copy |
Definition at line 81 of file PNestedCall.cpp.
References p_isVarCall, and p_value.
Referenced by operator=(), and PNestedStr().
bool & PNestedStr::getIsVarCall | ( | ) |
Gets the isVarCall of the PNestedStr.
Definition at line 74 of file PNestedCall.cpp.
References p_isVarCall.
bool PNestedStr::getIsVarCall | ( | ) | const |
Gets the isVarCall of the PNestedStr.
Definition at line 67 of file PNestedCall.cpp.
References p_isVarCall.
PString & PNestedStr::getValue | ( | ) |
Gets the value of the PNestedStr.
Definition at line 60 of file PNestedCall.cpp.
References p_value.
const PString & PNestedStr::getValue | ( | ) | const |
Gets the value of the PNestedStr.
Definition at line 53 of file PNestedCall.cpp.
References p_value.
PNestedStr & PNestedStr::operator= | ( | const PNestedStr & | other | ) |
Operator = of class PNestedStr.
other | : PNestedStr we want ot copy |
Definition at line 31 of file PNestedCall.cpp.
References copyPNestedStr().
void PNestedStr::setIsVarCall | ( | bool | isVarCall | ) |
Sets the isVarCall of the PNestedStr.
isVarCall | : isVarCall of the PNestedStr |
Definition at line 46 of file PNestedCall.cpp.
References p_isVarCall.
Referenced by createNestedCallFromStr(), and dico_create_nested_call().
void PNestedStr::setValue | ( | const PString & | value | ) |
Sets the value of the PNestedStr.
value | : value of the PNestedStr |
Definition at line 39 of file PNestedCall.cpp.
References p_value.
Referenced by createNestedCallFromStr(), and dico_create_nested_call().
|
private |
True if the PNestedStr calls a variable.
Definition at line 32 of file PNestedCall.h.
Referenced by copyPNestedStr(), getIsVarCall(), and setIsVarCall().
|
private |
String which can be a call to an other variable or a simple string.
Definition at line 30 of file PNestedCall.h.
Referenced by copyPNestedStr(), getValue(), and setValue().