Commit 80adc227 authored by Jack Jansen's avatar Jack Jansen

Added missing setselftype method to ManualGenerator

parent ae12e194
...@@ -79,6 +79,10 @@ class ManualGenerator(BaseFunctionGenerator): ...@@ -79,6 +79,10 @@ class ManualGenerator(BaseFunctionGenerator):
def functionbody(self): def functionbody(self):
Output("%s", self.body) Output("%s", self.body)
def setselftype(self, selftype, itselftype):
self.objecttype = selftype
self.itselftype = itselftype
class FunctionGenerator(BaseFunctionGenerator): class FunctionGenerator(BaseFunctionGenerator):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment