SyFi  0.3
swig::traits_as< Type *, pointer_category > Struct Template Reference

List of all members.

Static Public Member Functions

static Type * as (PyObject *obj, bool throw_error)

Detailed Description

template<class Type>
struct swig::traits_as< Type *, pointer_category >

Definition at line 4003 of file SyFiPYTHON_wrap.cxx.


Member Function Documentation

template<class Type >
static Type* swig::traits_as< Type *, pointer_category >::as ( PyObject *  obj,
bool  throw_error 
) [inline, static]

Definition at line 4004 of file SyFiPYTHON_wrap.cxx.

References swig::asptr(), run_all::res, SWIG_ERROR, SWIG_Error, SWIG_IsOK, SWIG_TypeError, and demo::v.

                                                     {
      Type *v = 0;      
      int res = (obj ? traits_asptr<Type>::asptr(obj, &v) : SWIG_ERROR);
      if (SWIG_IsOK(res)) {
        return v;
      } else {
        if (!PyErr_Occurred()) {
          SWIG_Error(SWIG_TypeError,  swig::type_name<Type>());
        }
        if (throw_error) throw std::invalid_argument("bad type");
        return 0;
      }
    }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines