summaryrefslogtreecommitdiffstats
path: root/src/pagedef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-10-04 18:42:41 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-10-04 18:46:26 (GMT)
commitc46e7ae8a25ec64b91ab39bf5246aa69e729d25b (patch)
treee5ee598361cc72417af9eacdb967741e5ef121b8 /src/pagedef.h
parentbfbab402156582f47e939c53817f07ff0020faa6 (diff)
downloadDoxygen-c46e7ae8a25ec64b91ab39bf5246aa69e729d25b.zip
Doxygen-c46e7ae8a25ec64b91ab39bf5246aa69e729d25b.tar.gz
Doxygen-c46e7ae8a25ec64b91ab39bf5246aa69e729d25b.tar.bz2
Reworked changes a bit
- topLine is replaced by startLine - changed unputDocnl macro into a more self contained function-like macro
Diffstat (limited to 'src/pagedef.h')
-rw-r--r--src/pagedef.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/pagedef.h b/src/pagedef.h
index 5190405..a1f08a5 100644
--- a/src/pagedef.h
+++ b/src/pagedef.h
@@ -1,12 +1,10 @@
/******************************************************************************
*
- *
- *
- * Copyright (C) 1997-2015 by Dimitri van Heesch.
+ * Copyright (C) 1997-2020 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
- * granted. No representations are made about the suitability of this software
+ * documentation under the terms of the GNU General Public License is hereby
+ * granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
@@ -35,7 +33,6 @@ class PageDef : virtual public Definition
virtual void setFileName(const char *name) = 0;
virtual void setLocalToc(const LocalToc &tl) = 0;
virtual void setShowLineNo(bool) = 0;
- virtual void setTopLine(int) = 0;
// getters
virtual DefType definitionType() const = 0;
@@ -58,7 +55,6 @@ class PageDef : virtual public Definition
virtual Definition *getPageScope() const = 0;
virtual QCString displayName(bool=TRUE) const = 0;
virtual bool showLineNo() const = 0;
- virtual int topLine() const = 0;
virtual void writeDocumentation(OutputList &) = 0;
virtual void writeTagFile(FTextStream &) = 0;
@@ -67,7 +63,7 @@ class PageDef : virtual public Definition
};
-PageDef *createPageDef(const char *f,int l,int p,const char *n,const char *d,const char *t);
+PageDef *createPageDef(const char *f,int l,const char *n,const char *d,const char *t);
class PageSDict : public SDict<PageDef>
{