| 15 | // -------------------------------------------------------------------------------------- |
| 16 | #if BLUE_WITH_PYTHON |
| 17 | void TriStepSetVariableStore::py__init__( Be::Optional<std::string> name, PyObject* value ) |
| 18 | { |
| 19 | if( name.IsAssigned() ) |
| 20 | { |
| 21 | SetName( name ); |
| 22 | } |
| 23 | if( value && value != Py_None ) |
| 24 | { |
| 25 | SetValue( value ); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | PyObject* TriStepSetVariableStore::GetValue() |
| 30 | { |
nothing calls this directly
no test coverage detected