summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
Diffstat (limited to 'Parser')
0 files changed, 0 insertions, 0 deletions
bb6834'>diff)downloadDoxygen-758291b1be0c43c13088389b0cfbb560efe00c1f.zip
Doxygen-758291b1be0c43c13088389b0cfbb560efe00c1f.tar.gz
Doxygen-758291b1be0c43c13088389b0cfbb560efe00c1f.tar.bz2
Release-1.2.15-20020430
Diffstat
-rw-r--r--INSTALL4
-rw-r--r--README4
-rw-r--r--VERSION2
-rw-r--r--addon/doxmlparser/include/doxmlintf.h2
-rw-r--r--addon/doxmlparser/src/compoundhandler.cpp6
-rw-r--r--addon/doxmlparser/src/compoundhandler.h2
-rw-r--r--addon/doxmlparser/src/dochandler.cpp2
-rw-r--r--addon/doxmlparser/src/doxmlintf.h2
-rw-r--r--addon/doxmlparser/test/main.cpp3
-rwxr-xr-xconfigure14
-rw-r--r--doc/docblocks.doc318
-rw-r--r--doc/language.doc25
-rw-r--r--doc/maintainers.txt3
-rw-r--r--libpng/libpng.pro.in1
-rw-r--r--packages/rpm/doxygen.spec2
-rw-r--r--qtools/qtools.pro.in1
-rw-r--r--src/bufstr.h4
-rw-r--r--src/code.l29
-rw-r--r--src/commentcnv.h26
-rw-r--r--src/commentcnv.l185
-rw-r--r--src/config.l10
-rw-r--r--src/defargs.l27
-rw-r--r--src/dot.cpp2
-rw-r--r--src/doxygen.cpp82
-rw-r--r--src/doxygen.pro.in1
-rw-r--r--src/doxytag.pro.in1
-rw-r--r--src/filedef.cpp26
-rw-r--r--src/filedef.h1
-rw-r--r--src/htmlhelp.cpp13
-rw-r--r--src/instdox.cpp2
-rw-r--r--src/lang_cfg.h1
-rw-r--r--src/language.cpp9
-rw-r--r--src/latexgen.cpp3
-rw-r--r--src/libdoxycfg.pro.in1
-rw-r--r--src/libdoxygen.pro.in3
-rw-r--r--src/libdoxygen.t3
-rw-r--r--src/rtfgen.cpp57
-rw-r--r--src/rtfgen.h17
-rw-r--r--src/scanner.l6
-rw-r--r--src/tagreader.cpp80
-rw-r--r--src/translator_jp.h385
-rw-r--r--src/translator_tw.h1378
-rw-r--r--src/util.cpp6
43 files changed, 2357 insertions, 392 deletions
diff --git a/INSTALL b/INSTALL
index 2ac6d34..de1b0c3 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,6 +1,6 @@
-DOXYGEN Version 1.2.15-20020421
+DOXYGEN Version 1.2.15-20020430
Please read the installation section of the manual for instructions.
--------
-Dimitri van Heesch (21 April 2002)
+Dimitri van Heesch (30 April 2002)
diff --git a/README b/README
index 5a9e2b0..6e0e6f1 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-DOXYGEN Version 1.2.15_20020421
+DOXYGEN Version 1.2.15_20020430
Please read INSTALL for compilation instructions.
@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.
Enjoy,
-Dimitri van Heesch (dimitri@stack.nl) (21 April 2002)
+Dimitri van Heesch (dimitri@stack.nl) (30 April 2002)
diff --git a/VERSION b/VERSION
index 2bbf466..219834b 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.2.15-20020421
+1.2.15-20020430
diff --git a/addon/doxmlparser/include/doxmlintf.h b/addon/doxmlparser/include/doxmlintf.h
index becbe78..5c051dd 100644
--- a/addon/doxmlparser/include/doxmlintf.h
+++ b/addon/doxmlparser/include/doxmlintf.h
@@ -681,11 +681,11 @@ class IFile : public ICompound
public:
virtual IGraph *includeDependencyGraph() const = 0;
virtual IGraph *includedByDependencyGraph() const = 0;
+ virtual IDocProgramListing *source() const = 0;
// file:
// includes()
// includedBy()
- // IDocProgramListing *source()
// ICompound *innerNamespaces()
// ICompoundIterator *innerClasses()
};
diff --git a/addon/doxmlparser/src/compoundhandler.cpp b/addon/doxmlparser/src/compoundhandler.cpp
index 59d4cd9..b6c6235 100644
--- a/addon/doxmlparser/src/compoundhandler.cpp
+++ b/addon/doxmlparser/src/compoundhandler.cpp
@@ -190,7 +190,6 @@ CompoundHandler::CompoundHandler(const QString &xmlDir)
addStartHandler("innerclass",this,&CompoundHandler::startInnerClass);
addEndHandler("innerclass");
-
}
CompoundHandler::~CompoundHandler()
@@ -461,3 +460,8 @@ ICompoundIterator *CompoundHandler::nestedClasses() const
return new CompoundIdIterator(m_mainHandler,m_innerClasses);
}
+IDocProgramListing *CompoundHandler::source() const
+{
+ return m_programListing;
+}
+
diff --git a/addon/doxmlparser/src/compoundhandler.h b/addon/doxmlparser/src/compoundhandler.h