aboutsummaryrefslogtreecommitdiffstats
path: root/typesystem.cpp
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-10-19 11:35:45 -0300
committerLuciano Miguel Wolf <luciano.wolf@indt.org.br>2009-10-21 16:34:20 -0300
commitfa5c2fa99cd0dae464f3cfa6686e2a31f2684687 (patch)
tree7b6a2c2ff82129452cff85a787bf69800bd3ff3b /typesystem.cpp
parentf2bb27557caa1a97f73b690650bcad746418a7c7 (diff)
added AddFunction struct to type system collection of objects;
the purpose is to allow the creation of new function/method signatures
Diffstat (limited to 'typesystem.cpp')
-rw-r--r--typesystem.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/typesystem.cpp b/typesystem.cpp
index 9a31a8da5..bed0b3512 100644
--- a/typesystem.cpp
+++ b/typesystem.cpp
@@ -1994,6 +1994,12 @@ QString FunctionModification::toString() const
return str;
}
+AddedFunction::AddedFunction(QString signature, TypeEntry* returnType)
+ : m_returnType(returnType)
+{
+
+}
+
/*
static void injectCode(ComplexTypeEntry *e,
const char *signature,