diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-01-05 19:00:26 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-01-05 19:00:26 (GMT) |
commit | 29348f280d674693e74e30ae55ca63ab3b97372e (patch) | |
tree | 278be3215f40b4fffddab1ec6dc2b8d47da895ac /src/definition.h | |
parent | 104be290eb99ab3277906a57fb4673dfa1850bc6 (diff) | |
download | Doxygen-29348f280d674693e74e30ae55ca63ab3b97372e.zip Doxygen-29348f280d674693e74e30ae55ca63ab3b97372e.tar.gz Doxygen-29348f280d674693e74e30ae55ca63ab3b97372e.tar.bz2 |
Release-1.3.5-20040105
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/definition.h b/src/definition.h index 04f18e6..6ddce6c 100644 --- a/src/definition.h +++ b/src/definition.h @@ -2,7 +2,7 @@ * * * - * Copyright (C) 1997-2003 by Dimitri van Heesch. + * Copyright (C) 1997-2004 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 @@ -49,7 +49,8 @@ class Definition /*! Create a new definition */ Definition( const char *defFileName,int defLine, - const char *name,const char *b=0,const char *d=0); + const char *name,const char *b=0,const char *d=0, + bool isSymbol=TRUE); /*! Destroys the definition */ virtual ~Definition(); /*! Returns the name of the definition */ @@ -179,6 +180,7 @@ class Definition QCString m_briefFile; QList<ListItemInfo> *m_xrefListItems; QCString m_symbolName; + bool m_isSymbol; }; class DefinitionList : public QList<Definition> |