Skip to content

Commit

Permalink
Update _controller.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Aug 26, 2016
1 parent fa99199 commit 67d7ef9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/py/autowig/_controller.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
from pkgtk.plugin import PluginManager

from .asg import (HeaderProxy,
TypedefProxy,
EnumerationProxy,
FunctionProxy,
ConstructorProxy,
ClassProxy,
ClassTemplateSpecializationProxy,
ClassTemplateProxy,
VariableProxy,
ClassTemplatePartialSpecializationProxy)

controller = PluginManager('autowig.controller', brief="AutoWIG middle-end plugin_managers",
details="""AutoWIG middle-end plugin_managers are responsible for Abstract Semantic Graph (ASG) modification from Python semantic queries.
.. seealso:: :class:`autowig.AbstractSemanticGraph` for more details on ASGs""")



def refactoring(asg):
for function in asg.functions(free=True):
if len(function.parameters) > 1:
Expand Down

0 comments on commit 67d7ef9

Please sign in to comment.