aboutsummaryrefslogtreecommitdiffstats
path: root/cppgenerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppgenerator.h')
-rw-r--r--cppgenerator.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cppgenerator.h b/cppgenerator.h
index 728dbdc1e..c9d24d246 100644
--- a/cppgenerator.h
+++ b/cppgenerator.h
@@ -149,6 +149,10 @@ private:
/// Writes the implementation of special cast functions, used when we need to cast a class with mulltiple inheritance.
void writeSpecialCastFunction(QTextStream& s, const AbstractMetaClass* metaClass);
+ void writeExtendedIsConvertibleFunction(QTextStream& s, const TypeEntry* externalType, const QList<const AbstractMetaClass*>& conversions);
+ void writeExtendedToCppFunction(QTextStream& s, const TypeEntry* externalType, const QList<const AbstractMetaClass*>& conversions);
+ void writeExtendedConverterInitialization(QTextStream& s, const TypeEntry* externalType, const QList<const AbstractMetaClass*>& conversions);
+
void writeParentChildManagement(QTextStream& s, const AbstractMetaFunction* func);
void writeReturnValueHeuristics(QTextStream& s, const AbstractMetaFunction* func, const QString& self = "self");
/**