diff options
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/python/pfw.i | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bindings/python/pfw.i b/bindings/python/pfw.i index bf1330b..47c347b 100644 --- a/bindings/python/pfw.i +++ b/bindings/python/pfw.i @@ -180,7 +180,11 @@ public: // CParameterMgrFullConnector // Logger interface %feature("director") ILogger; -%nestedworkaround CParameterMgrFullConnector::ILogger; +// The nested workaround is used to tell swig to ignore the +// inner class definition that would be redundant with the fake outer class. +// It would have been useful if ParameterMgrFullConnector.h was included +// (as opposed to copying the class definition in this .i). +// As their is no conflicting ILogger definition, this workaround is useless. class ILogger { public: |