diff options
author | Kevin Rocard <kevin.rocard@intel.com> | 2015-11-14 18:02:51 +0100 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-12-09 20:59:58 +0100 |
commit | 29d0d41fe5ea0b3f5a5f42b405f460b42848f031 (patch) | |
tree | d99bf0a47128088a9289070156d7725f2f36c700 | |
parent | ef8dcd670c2c5450362b36e01bd7213497930067 (diff) | |
download | external_parameter-framework-replicant-6.0.zip external_parameter-framework-replicant-6.0.tar.gz external_parameter-framework-replicant-6.0.tar.bz2 |
Python bindings: Remove useless nestedworkaroundreplicant-6.0-beta-0002replicant-6.0-beta-0001replicant-6.0-alpha-0006replicant-6.0-alpha-0005replicant-6.0
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.
Signed-off-by: Kevin Rocard <kevin.rocard@intel.com>
-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: |