summaryrefslogtreecommitdiffstats
path: root/src/classdef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-02-09 19:18:25 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-02-09 19:18:25 (GMT)
commitaacd1557af129e2bff3514169e04168376a2431b (patch)
tree95ba82f21de02e4db4763daea53134c8e56fb1df /src/classdef.h
parentdcd4714c4413348d02eb7224dafee5d06be43dfb (diff)
downloadDoxygen-aacd1557af129e2bff3514169e04168376a2431b.zip
Doxygen-aacd1557af129e2bff3514169e04168376a2431b.tar.gz
Doxygen-aacd1557af129e2bff3514169e04168376a2431b.tar.bz2
Release-1.8.3.1-20130209
Diffstat (limited to 'src/classdef.h')
-rw-r--r--src/classdef.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/classdef.h b/src/classdef.h
index 53e1c15..19bf976 100644
--- a/src/classdef.h
+++ b/src/classdef.h
@@ -69,6 +69,8 @@ class ClassDef : public Definition
* found.
* \param startLine line number where the definition of this compound
* starts.
+ * \param startColumn column number where the definition of this compound
+ * starts.
* \param name the name of this compound (including scope)
* \param ct the kind of Compound
* \param ref the tag file from which this compound is extracted
@@ -82,7 +84,7 @@ class ClassDef : public Definition
* I didn't add this to CompoundType to avoid having
* to adapt all translators.
*/
- ClassDef(const char *fileName,int startLine,
+ ClassDef(const char *fileName,int startLine,int startColumn,
const char *name,CompoundType ct,
const char *ref=0,const char *fName=0,
bool isSymbol=TRUE,bool isJavaEnum=FALSE);
@@ -310,7 +312,7 @@ class ClassDef : public Definition
void setProtection(Protection p);
void setGroupDefForAllMembers(GroupDef *g,Grouping::GroupPri_t pri,const QCString &fileName,int startLine,bool hasDocs);
void addInnerCompound(Definition *d);
- ClassDef *insertTemplateInstance(const QCString &fileName,int startLine,
+ ClassDef *insertTemplateInstance(const QCString &fileName,int startLine,int startColumn,
const QCString &templSpec,bool &freshInstance);
void addUsedClass(ClassDef *cd,const char *accessName,Protection prot);
void addUsedByClass(ClassDef *cd,const char *accessName,Protection prot);