summaryrefslogtreecommitdiffstats
path: root/src/entry.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-02-03 10:42:52 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-02-03 10:42:52 (GMT)
commitac16b765b390a835d3f455691a2e3f6a0e94bd78 (patch)
treec6e72204c112ad8646d737990b93aa290c61c34c /src/entry.cpp
parent75fa97fc3cac911c348d177c98057dc68c61771b (diff)
downloadDoxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.zip
Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.tar.gz
Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.tar.bz2
Release-1.2.13-20020203
Diffstat (limited to 'src/entry.cpp')
-rw-r--r--src/entry.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/entry.cpp b/src/entry.cpp
index 848ece9..13378e9 100644
--- a/src/entry.cpp
+++ b/src/entry.cpp
@@ -65,8 +65,12 @@ Entry::Entry(const Entry &e)
includeFile = e.includeFile.copy();
includeName = e.includeFile.copy();
doc = e.doc.copy();
+ docLine = e.docLine;
+ docFile = e.docFile.copy();
relates = e.relates.copy();
brief = e.brief.copy();
+ briefLine = e.briefLine;
+ briefFile = e.briefFile.copy();
inside = e.inside.copy();
fileName = e.fileName.copy();
startLine = e.startLine;
@@ -90,9 +94,7 @@ Entry::Entry(const Entry &e)
anchors->setAutoDelete(TRUE);
argList = new ArgumentList;
argList->setAutoDelete(TRUE);
- //printf("Entry::Entry(copy) tArgList=0\n");
tArgLists = 0;
- //mtArgList = 0;
groupDocType = e.groupDocType;
// deep copy of the child entry list
@@ -206,8 +208,12 @@ void Entry::reset()
includeFile.resize(0);
includeName.resize(0);
doc.resize(0);
+ docFile.resize(0);
+ docLine=-1;
relates.resize(0);
brief.resize(0);
+ briefFile.resize(0);
+ briefLine=-1;
inside.resize(0);
fileName.resize(0);
//scopeSpec.resize(0);
@@ -251,12 +257,13 @@ int Entry::getSize()
size+=bitfields.length()+1;
size+=exception.length()+1;
size+=program.length()+1;
- //size+=body.length()+1;
size+=includeFile.length()+1;
size+=includeName.length()+1;
size+=doc.length()+1;
+ size+=docFile.length()+1;
size+=relates.length()+1;
size+=brief.length()+1;
+ size+=briefFile.length()+1;
size+=inside.length()+1;
size+=fileName.length()+1;
size+=initializer.length()+1;