summaryrefslogtreecommitdiffstats
path: root/src/formula.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-06-10 09:28:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-06-10 09:28:22 (GMT)
commit0ce3aea886f4e95da56d164b3944fd54d3d68f89 (patch)
tree6709ddc7b1764dc3b20bbac7eb36c05edcc91e03 /src/formula.h
parent1983c30b71bf92b3fa6bfedbb98451c3b7f74498 (diff)
downloadDoxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.zip
Doxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.tar.gz
Doxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.tar.bz2
Release-1.8.1.1
Diffstat (limited to 'src/formula.h')
-rw-r--r--src/formula.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/formula.h b/src/formula.h
index ca68e6e..a912b76 100644
--- a/src/formula.h
+++ b/src/formula.h
@@ -22,6 +22,7 @@
#include <qlist.h>
#include <qdict.h>
+/** Class representing a formula in the output. */
class Formula
{
public:
@@ -35,12 +36,14 @@ class Formula
QCString form;
};
+/** A list of Formula objects. */
class FormulaList : public QList<Formula>
{
public:
void generateBitmaps(const char *path);
};
+/** Iterator for Formula objects in a FormulaList. */
class FormulaListIterator : public QListIterator<Formula>
{
public:
@@ -48,6 +51,7 @@ class FormulaListIterator : public QListIterator<Formula>
QListIterator<Formula>(l) {}
};
+/** Unsorted dictionary of Formula objects. */
class FormulaDict : public QDict<Formula>
{
public: