summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/inputint.h
diff options
context:
space:
mode:
Diffstat (limited to 'addon/doxywizard/inputint.h')
-rw-r--r--addon/doxywizard/inputint.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/addon/doxywizard/inputint.h b/addon/doxywizard/inputint.h
index 846b7c2..c4723be 100644
--- a/addon/doxywizard/inputint.h
+++ b/addon/doxywizard/inputint.h
@@ -39,10 +39,12 @@ class InputInt : public QObject, public Input
Kind kind() const { return Int; }
QString docs() const { return m_docs; }
QString id() const { return m_id; }
+ QString templateDocs() const { return m_tdocs; }
void addDependency(Input *) { Q_ASSERT(false); }
void setEnabled(bool);
void updateDependencies() {}
void writeValue(QTextStream &t,QTextCodec *codec);
+ void setTemplateDocs(const QString &docs) { m_tdocs = docs; }
public slots:
void reset();
@@ -66,6 +68,7 @@ class InputInt : public QObject, public Input
QVariant m_value;
QString m_docs;
QString m_id;
+ QString m_tdocs;
};
#endif