diff python/ppci/core/function.py @ 104:ed230e947dc6

Added hexviewer
author windel
date Sun, 30 Dec 2012 22:31:55 +0100
parents 4a37d6992bd3
children 6a303f835c6d
line wrap: on
line diff
--- a/python/ppci/core/function.py	Wed Dec 26 10:53:33 2012 +0100
+++ b/python/ppci/core/function.py	Sun Dec 30 22:31:55 2012 +0100
@@ -1,6 +1,7 @@
 
 class Function:
-   def __init__(self):
-      pass
+   def __init__(self, functiontype, name, module):
+      self.functiontype = functiontype
+      self.name = name
+      self.module = module
 
-