summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/inputint.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-07-21 10:40:14 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-07-28 11:47:23 (GMT)
commit38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212 (patch)
treec162a1ab1c375aa21c4f137ec30ae765b67527a4 /addon/doxywizard/inputint.h
parent10ab1d5dddd63b5e7b3a65da8eb8a6416be7c914 (diff)
downloadDoxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.zip
Doxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.tar.gz
Doxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.tar.bz2
config.xml is now used to generate configoptions.cpp and config.doc
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