| 196 | } |
| 197 | |
| 198 | static PyObject* PyGetLocalVariable( PyObject* self, PyObject* args ) |
| 199 | { |
| 200 | Tr2VariableStore* pThis = BluePythonCast<Tr2VariableStore*>( self ); |
| 201 | const char* name; |
| 202 | if( !PyArg_ParseTuple( args, "s", &name ) ) |
| 203 | { |
| 204 | return NULL; |
| 205 | } |
| 206 | |
| 207 | TriVariable* variable = pThis->GetLocalVariable( name ); |
| 208 | return PyWrapVariable( variable ); |
| 209 | } |
| 210 | |
| 211 | static PyObject* PyGetVariableStore( PyObject* self, PyObject* args ) |
| 212 | { |
nothing calls this directly
no test coverage detected