aboutsummaryrefslogtreecommitdiffstats
path: root/generator/cppgenerator.h
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2011-08-06 17:28:00 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:17:09 -0300
commit714ddb6c74b4db4853ca2e34bb50f2888e75ec8d (patch)
tree7d04cd087ad99fef6442f6be4fbe0342eb722682 /generator/cppgenerator.h
parent8794f303c16f67812093d0311530b4447ff5c94c (diff)
The type checking now pays attention to the <no-null-pointer/> tag.
An unit test was also added for it.
Diffstat (limited to 'generator/cppgenerator.h')
-rw-r--r--generator/cppgenerator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/cppgenerator.h b/generator/cppgenerator.h
index 4dea57bd2..f0548931e 100644
--- a/generator/cppgenerator.h
+++ b/generator/cppgenerator.h
@@ -65,7 +65,7 @@ private:
/// Writes the check section for the validity of wrapped C++ objects.
void writeInvalidPyObjectCheck(QTextStream& s, const QString& pyObj);
- void writeTypeCheck(QTextStream& s, const AbstractMetaType* argType, QString argumentName, bool isNumber = false, QString customType = "");
+ void writeTypeCheck(QTextStream& s, const AbstractMetaType* argType, QString argumentName, bool isNumber = false, QString customType = "", bool rejectNull = false);
void writeTypeCheck(QTextStream& s, const OverloadData* overloadData, QString argumentName);
void writeTypeDiscoveryFunction(QTextStream& s, const AbstractMetaClass* metaClass);