| 11172 | |
| 11173 | |
| 11174 | SWIGINTERN PyObject *_wrap_StringList_end(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { |
| 11175 | PyObject *resultobj = 0; |
| 11176 | std::vector< std::string > *arg1 = (std::vector< std::string > *) 0 ; |
| 11177 | void *argp1 = 0 ; |
| 11178 | int res1 = 0 ; |
| 11179 | PyObject * obj0 = 0 ; |
| 11180 | std::vector< std::string >::iterator result; |
| 11181 | |
| 11182 | if (!PyArg_ParseTuple(args,(char *)"O:StringList_end",&obj0)) SWIG_fail; |
| 11183 | res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_std__string_std__allocatorT_std__string_t_t, 0 | 0 ); |
| 11184 | if (!SWIG_IsOK(res1)) { |
| 11185 | SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StringList_end" "', argument " "1"" of type '" "std::vector< std::string > *""'"); |
| 11186 | } |
| 11187 | arg1 = reinterpret_cast< std::vector< std::string > * >(argp1); |
| 11188 | result = (arg1)->end(); |
| 11189 | resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< std::string >::iterator & >(result)), |
| 11190 | swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); |
| 11191 | return resultobj; |
| 11192 | fail: |
| 11193 | return NULL; |
| 11194 | } |
| 11195 | |
| 11196 | |
| 11197 | SWIGINTERN PyObject *_wrap_StringList_rbegin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { |
nothing calls this directly
no test coverage detected