aboutsummaryrefslogtreecommitdiffstats
path: root/headergenerator.h
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-08-28 15:37:41 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-08-28 15:52:16 -0300
commitd371f80bf6447bb4f6c209dabb5e5def02665e20 (patch)
tree739d6e3c4eb9cf0fb8e1821207bd69b2e839a73b /headergenerator.h
parentd5fc115c508fa1bdb295d2cb7f4a2cb3385c4e82 (diff)
Removed inline implementations from inside Converters to avoid the
creation of specialized templates just a few lines after Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'headergenerator.h')
-rw-r--r--headergenerator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/headergenerator.h b/headergenerator.h
index 32c17bef6..2495f6c2b 100644
--- a/headergenerator.h
+++ b/headergenerator.h
@@ -42,7 +42,8 @@ private:
void writeDefaultImplementation(QTextStream& s, const AbstractMetaFunction* func) const;
void writeVirtualDispatcher(QTextStream &s, const AbstractMetaFunction *func) const;
void writeTypeCheckMacro(QTextStream& s, const TypeEntry* type);
- void writeTypeConverter(QTextStream& s, const TypeEntry* type);
+ void writeTypeConverterDecl(QTextStream& s, const TypeEntry* type);
+ void writeTypeConverterImpl(QTextStream& s, const TypeEntry* type);
};
#endif // HEADERGENERATOR_H