summaryrefslogtreecommitdiffstats
path: root/src/definition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/definition.h')
-rw-r--r--src/definition.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/definition.h b/src/definition.h
index ac9cc56..c0428a0 100644
--- a/src/definition.h
+++ b/src/definition.h
@@ -97,13 +97,6 @@ class Definition : public DefinitionIntf
virtual ~Cookie() {}
};
- enum outputLocalTocType {
- None = 0, // absolute value
- Html = 0, // index / also to be used as (1 << Definition::Html)
- Latex = 1, // ...
- Xml = 2, // ...
- numOutputLocalTocType = 3 // number of outputLocalTocType
- };
/*! Create a new definition */
Definition(
const char *defFileName,int defLine,int defColumn,
@@ -356,7 +349,7 @@ class Definition : public DefinitionIntf
void setLocalName(const QCString name);
void addSectionsToIndex();
- void writeToc(OutputList &ol, int localToc, int *localTocLevel);
+ void writeToc(OutputList &ol, const LocalToc &lt);
void setCookie(Cookie *cookie) { delete m_cookie; m_cookie = cookie; }
Cookie *cookie() const { return m_cookie; }