summaryrefslogtreecommitdiffstats
path: root/src/groupdef.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-4/+4
| | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()'
* issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352)Dimitri van Heesch2021-04-081-0/+5
|
* Refactoring: Add TextStream buffer to improve output writing performanceDimitri van Heesch2021-03-281-1/+1
| | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance.
* Refactoring: replace QFile/FTextStream with fstream/stringstreamDimitri van Heesch2021-03-181-2/+1
|
* Refactoring: modernize FileListDimitri van Heesch2021-01-221-1/+1
|
* Refactoring: modernize MemberListDimitri van Heesch2021-01-221-1/+1
|
* Refactoring: remove unused sortdict.hDimitri van Heesch2021-01-221-1/+0
|
* Refactoring: remove some dead/commented out codeDimitri van Heesch2021-01-221-1/+0
|
* Refactoring: modernize getMemberLists()Dimitri van Heesch2021-01-041-1/+2
|
* Refactoring: replace Doxygen::groupSDict by Doxygen::groupLinkedMapDimitri van Heesch2020-12-311-27/+4
|
* Refactoring: replaced PageSDict by PageLinked*MapDimitri van Heesch2020-12-311-6/+6
|
* Refactoring: change MemberGroupSDict to MemberGroupListDimitri van Heesch2020-12-301-2/+2
|
* Refactoring: replaced getNamespaceSDict() by getNamespaces()Dimitri van Heesch2020-12-231-1/+2
|
* Remove some build warningsalbert-github2020-12-201-1/+1
| | | | | | | | Removing some build warnings like: ``` D:\a\doxygen\doxygen\src\groupdef.cpp(628): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data D:\a\doxygen\doxygen\src\index.cpp(3950): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data ```
* Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-191-2/+2
|
* Creating link to not defined label in case of groupsalbert-github2020-12-041-0/+1
| | | | | | | | | | | | | | | | | | In the doxygen group example there is for group 5 a "More" link but this points to nowhere as there is no detailed section. Using a link checker this gives: ``` Processing file:///.../html/group__group5.html List of broken links and other issues: file:///.../html/group__group5.html Line: 47 Code: 200 (no message) To do: Some of the links to this resource point to broken URI fragments (such as index.html#fragment). The following fragments need to be fixed: details Line: 47 ``` By applying the same logic for creating the "More" link as for for the real writing and using the appropriate function (with correction) for it
* Refactoring: replacing dynamic_cast by static_cast to improve performanceDimitri van Heesch2020-11-131-1/+9
|
* Refactoring: Introduce immutable and mutable interfacesDimitri van Heesch2020-11-091-1/+1
| | | | | | Split Definition/ClassDef/NamespaceDef/MemberDef into a immutable and mutable part Aliases are immutable, other symbols are stored using an immutable interface but can be made mutable explicitly by dynamic casting.
* Did a bit of restructuring and fixed some compiler warningsDimitri van Heesch2020-05-101-2/+2
|
* Merge branch 'feature/change-DirList-container-to-std' of ↵Dimitri van Heesch2020-05-101-2/+2
|\ | | | | | | https://github.com/dhebbeker/doxygen into dhebbeker-feature/change-DirList-container-to-std
| * Replaced addDir(const DirDef *dd) by addDir(DirDef *const dd) in GroupDef ↵David Hebbeker2020-05-051-1/+1
| | | | | | | | | | | | | | | | and GropuDefImpl. Required as the list type the directories are added to has pointers to non-const DirDef as value type. (cherry picked from commit be6f0726eff5371a656a0831d50676cd30116170)
| * Include dirdef.h instead of forward declaration.David Hebbeker2020-05-051-1/+1
| | | | | | Forward declaration is not possible for an alias.
* | Refactoring: migrate MemberNameInfoSDict to MemberNameInfoLinkedMapDimitri van Heesch2020-04-271-4/+3
|/
* Use smartpointers to manage the lifetime of Entry objectsDimitri van Heesch2019-10-071-7/+9
|
* Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-2/+3
|
* Refactored Definition and derived classes such that they are abstract interfacesDimitri van Heesch2019-02-281-109/+57
|
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Bug 742235 - Bogus message with addtogroupDimitri van Heesch2015-01-031-1/+1
|
* Bug 736992 - Member functions omitted from tagfileDimitri van Heesch2014-09-221-0/+2
|
* Addition of module data to context and alphaIndex filterDimitri van Heesch2014-08-021-0/+3
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Reduced and improved functionality of QListDimitri van Heesch2013-12-301-4/+5
| | | | | | | | | - operations on current index and node (next(), prev(), last(), first()) have been removed. - access to internal nodes has been removed. - old QList has been renamed to QInternalList for use inside qtools only. - added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()). - add compareValues also to QDict for consistency. - changed doxygen's implementation to comply with the new QList and QDict interface.
* Release-1.8.3.1Dimitri van Heesch2013-01-201-3/+3
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-12/+10
|
* Release-1.8.1.2-20120729Dimitri van Heesch2012-07-291-0/+1
|
* Release-1.8.1.1Dimitri van Heesch2012-06-101-1/+5
|
* Release-1.8.0Dimitri van Heesch2012-03-171-9/+3
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+2
|
* Release-1.7.6.1-20111226Dimitri van Heesch2011-12-261-2/+5
|
* Release-1.7.5.1-20111027Dimitri van Heesch2011-10-271-0/+1
|
* Release-1.7.4Dimitri van Heesch2011-03-281-0/+1
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+1
|
* Release-1.6.3-20100507Dimitri van Heesch2010-05-071-0/+1
|
* Release-1.6.3-20100324Dimitri van Heesch2010-03-241-0/+1
|
* Release-1.6.2-20100124Dimitri van Heesch2010-01-241-1/+1
|
* Release-1.5.6-20080819Dimitri van Heesch2008-08-191-2/+15
|
* Release-1.5.5-20080307Dimitri van Heesch2008-03-071-1/+2
|
* Release-1.5.5Dimitri van Heesch2008-02-101-0/+9
|
* Release-1.5.4-20080123Dimitri van Heesch2008-01-231-2/+2
|
* Release-1.5.4-20080101Dimitri van Heesch2008-01-171-2/+2
|