+ whitespace improvement

This commit is contained in:
wmayer
2015-12-27 19:16:05 +01:00
parent fb5fdc3231
commit 214306edc8
2 changed files with 8 additions and 9 deletions

View File

@@ -51,22 +51,21 @@ public:
Py::Object repr();
Py::Object getattr(const char *);
int setattr(const char *, const Py::Object &);
//exposed methods
Py::Object getSoEventManager(const Py::Tuple&);
Py::Object getSoRenderManager(const Py::Tuple&);
Py::Object seekToPoint(const Py::Tuple&);
Py::Object setFocalDistance(const Py::Tuple& args);
Py::Object getFocalDistance(const Py::Tuple& args);
Py::Object getFocalDistance(const Py::Tuple& args);
private:
private:
typedef PyObject* (*method_varargs_handler)(PyObject *_self, PyObject *_args);
static method_varargs_handler pycxx_handler;
static PyObject *method_varargs_ext_handler(PyObject *_self, PyObject *_args);
private:
std::list<PyObject*> callbacks;
View3DInventorViewer* _viewer;