--- a/Orb/Doxygen/src/filedef.h Fri Apr 23 20:47:58 2010 +0100
+++ b/Orb/Doxygen/src/filedef.h Wed Aug 11 14:49:30 2010 +0100
@@ -2,7 +2,7 @@
*
*
*
- * Copyright (C) 1997-2008 by Dimitri van Heesch.
+ * Copyright (C) 1997-2010 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
@@ -125,10 +125,12 @@
bool isIncluded(const QCString &name) const;
bool isJava() const { return m_isJava; }
+ bool isCSharp() const { return m_isCSharp; }
void writeDocumentation(OutputList &ol);
void writeMemberPages(OutputList &ol);
void writeQuickMemberLinks(OutputList &ol,MemberDef *currentMd) const;
+ void writeSummaryLinks(OutputList &ol);
void writeSource(OutputList &ol);
void parseSource();
@@ -164,6 +166,7 @@
void addListReferences();
bool isDocumentationFile() const;
+ bool includes(FileDef *incFile,QDict<FileDef> *includedFiles) const;
MemberList *getMemberList(MemberList::ListType lt) const;
const QList<MemberList> &getMemberLists() const { return m_memberLists; }
@@ -216,6 +219,7 @@
QIntDict<MemberDef> *srcMemberDict;
bool isSource;
bool m_isJava;
+ bool m_isCSharp;
QCString fileVersion;
PackageDef *package;
DirDef *dir;