summaryrefslogtreecommitdiff
path: root/src/section.h
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-10-15 11:12:58 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-10-15 11:12:58 +0900
commit3b6ea7abb3d529f7805ed54071d597f01b578740 (patch)
tree20a720c78ff4f8838599f22bdd6afe43277758bf /src/section.h
parent1ec16d649a01d369eecae2f1225c0ffa1caaf640 (diff)
downloaddoxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.tar.gz
doxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.tar.bz2
doxygen-3b6ea7abb3d529f7805ed54071d597f01b578740.zip
Imported Upstream version 1.8.17upstream/1.8.17
Diffstat (limited to 'src/section.h')
-rw-r--r--src/section.h27
1 files changed, 6 insertions, 21 deletions
diff --git a/src/section.h b/src/section.h
index b6268a9..9e6c695 100644
--- a/src/section.h
+++ b/src/section.h
@@ -26,33 +26,18 @@ class Definition;
/** Class representing a section in a page */
struct SectionInfo
{
- enum SectionType { Page = 0,
- Section = 1,
- Subsection = 2,
- Subsubsection = 3,
- Paragraph = 4,
+ enum SectionType { Page = 0,
+ Section = 1,
+ Subsection = 2,
+ Subsubsection = 3,
+ Paragraph = 4,
Anchor = 5,
Table = 6
};
SectionInfo(const char *f,const int lin,const char *l,const char *t,
SectionType st,int lev,const char *r=0) :
label(l), title(t), type(st), ref(r), definition(0),
- fileName(f), lineNr(lin), generated(FALSE), level(lev)
- {
- }
- SectionInfo(const SectionInfo &s)
- {
- label=s.label.copy();
- title=s.title.copy();
- type =s.type;
- ref=s.ref.copy();
- definition=s.definition;
- fileName=s.fileName.copy();
- lineNr=s.lineNr;
- generated=s.generated;
- level=s.level;
- }
- ~SectionInfo() {}
+ fileName(f), lineNr(lin), generated(FALSE), level(lev) {}
QCString label;
QCString title;
SectionType type;