summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.h
Commit message (Collapse)AuthorAgeFilesLines
* issue #8232: Incorrect link from summary links for namespacesDimitri van Heesch2021-05-251-1/+1
|
* Cleanup util.h by moving some functions to other filesDimitri van Heesch2021-05-011-0/+11
|
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-5/+5
| | | | | | | | | | | | | | | | | 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/+6
|
* 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: some cleanup and removed text direction logicDimitri van Heesch2021-03-041-1/+0
|
* Refactoring: modernize getMemberLists()Dimitri van Heesch2021-01-041-1/+1
|
* Refactoring: replace MemberSDict by MemberLinkedRefMapDimitri van Heesch2021-01-041-1/+1
|
* Refactoring: change MemberGroupSDict to MemberGroupListDimitri van Heesch2020-12-301-2/+2
|
* Refactoring: replace NamespaceSDict by NamespaceLinkedMapDimitri van Heesch2020-12-231-49/+4
|
* Refactoring: replaced getNamespaceSDict() by getNamespaces()Dimitri van Heesch2020-12-231-6/+13
|
* Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-191-5/+5
|
* Refactoring: removing setVisited/isVisited membersDimitri van Heesch2020-11-201-5/+9
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-11-131-1/+1
|\
| * Typo in namespacedef.halbert-github2020-11-101-1/+1
| | | | | | | | Typo in namespacedef.h as found by Fossies
* | Refactoring: replacing dynamic_cast by static_cast to improve performanceDimitri van Heesch2020-11-131-7/+15
|/
* Refactoring: Introduce immutable and mutable interfacesDimitri van Heesch2020-11-091-32/+40
| | | | | | 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.
* Refactoring: modernized the getUsedNamespaces() methodDimitri van Heesch2020-11-011-1/+1
|
* Refactoring: modernize getUsedClasses() methodDimitri van Heesch2020-10-291-9/+8
|
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-2/+2
|
* Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-11/+15
|
* Refactored Definition and derived classes such that they are abstract interfacesDimitri van Heesch2019-02-281-111/+68
|
* Store inline attribute for namespacesDimitri van Heesch2019-01-211-0/+4
|
* Added *.ice files as a recognized file type.Mark Spruiell2018-10-221-1/+17
| | | | Added a Slice-optimized output mode.
* const-ifyAdrian Negreanu2017-09-251-1/+1
|
* Bug 744762 - Using TAGFILES prevents symbol extractionDimitri van Heesch2015-06-111-0/+1
|
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Bug 736992 - Member functions omitted from tagfileDimitri van Heesch2014-09-221-0/+2
|
* Added namespace info to the contextDimitri van Heesch2014-08-021-0/+2
|
* Bug 724241 - Internal inconsistency: namespace in IDLalbert-github2014-02-201-1/+2
| | | | Library was missing in the list of namespaces. In scanner.l constants, module and library are handled in the same way. In namespace.{h,cpp} only constants and module were handled, now also library is handled in a similar way.
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Add template context for annotated class indexDimitri van Heesch2014-02-081-0/+1
|
* Reduced and improved functionality of QListDimitri van Heesch2013-12-301-11/+8
| | | | | | | | | - 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.
* More work on the template and context mechanismsDimitri van Heesch2013-12-291-0/+1
|
* More template and context updatesDimitri van Heesch2013-11-111-2/+3
|
* Added rudimentary support for django like template system for output creation.Dimitri van Heesch2013-10-211-0/+2
|
* Release-1.8.3.1-20130402Dimitri van Heesch2013-04-021-4/+13
|
* Release-1.8.3.1-20130209Dimitri van Heesch2013-02-091-1/+1
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-3/+3
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-9/+8
|
* Release-1.8.1.1Dimitri van Heesch2012-06-101-1/+6
|
* Release-1.8.0-20120408Dimitri van Heesch2012-04-081-0/+1
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+1
|
* Release-1.7.5.1-20111027Dimitri van Heesch2011-10-271-0/+1
|
* Release-1.7.5Dimitri van Heesch2011-08-141-1/+0
|
* Release-1.7.4-20110727Dimitri van Heesch2011-07-271-0/+1
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+1
|
* Release-1.6.3-20100507Dimitri van Heesch2010-05-071-0/+2
|
* Release-1.6.3-20100324Dimitri van Heesch2010-03-241-0/+2
|