summaryrefslogtreecommitdiffstats
path: root/src/dirdef.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-2/+1
| | | | | | | | | | | | | | | | | 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()'
* 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: make qcstring.h a local includeDimitri van Heesch2021-03-261-3/+4
|
* Refactoring: replace QFile/FTextStream with fstream/stringstreamDimitri van Heesch2021-03-181-2/+1
|
* Refactoring: Replaced QDir with DirDimitri van Heesch2021-03-181-1/+0
| | | | | - Dir is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17.
* Refactoring: some cleanup and removed text direction logicDimitri van Heesch2021-03-041-1/+0
|
* Refactoring: modernize FileListDimitri van Heesch2021-01-221-2/+2
|
* Refactoring: modernize IncludeInfo listDimitri van Heesch2021-01-221-6/+6
|
* Refactoring: replace FilePairDict by FilePairLinkedMapDimitri van Heesch2021-01-221-10/+5
|
* Refactoring: moderize Doxygen::dirRelationsDimitri van Heesch2021-01-021-0/+4
|
* Refactoring: remove unused DirSDict classDimitri van Heesch2021-01-021-15/+0
|
* Refactoring: replace Doxygen::directories by Doxygen::dirLinkedMapDimitri van Heesch2021-01-011-3/+15
|
* Replaced UsedDirsContainer with UsedDirLinkedMapDimitri van Heesch2020-12-301-46/+55
| | | | | UsedDirLinkedMap is based on the LinkedMap container; this reduces the amount of unmanaged raw pointers, while still allowing quick lookup and range based loops.
* Substitute `QDict<UsedDir>` with `std::map<QCString, UsedDir * >`.David Hebbeker2020-12-291-1/+4
| | | This allows to use range based for loops.
* Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-191-1/+0
|
* 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.
* Add `const` qualifier to UsedDir::m_dir. (#7820)David Hebbeker2020-06-131-2/+2
|
* Did a bit of restructuring and fixed some compiler warningsDimitri van Heesch2020-05-101-18/+8
|
* Copied implementation of `QGList::inSort()` to sortInDirList.David Hebbeker2020-05-051-0/+7
|
* Create compareDirDefs for sorting.David Hebbeker2020-05-051-5/+3
|
* Replace QList with std::deque in DirList.David Hebbeker2020-05-021-6/+4
| | | | https://stackoverflow.com/a/4110482/5534993 https://www.copperspice.com/docs/cs_api_1.5/containers-c.html
* 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-4/+4
|
* Refactored Definition and derived classes such that they are abstract interfacesDimitri van Heesch2019-02-281-58/+32
|
* Improved sorting performance for directories and filesDimitri van Heesch2016-01-311-0/+2
|
* Added support for directory dependency graphs to template engineDimitri van Heesch2015-08-281-1/+0
|
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Introduce new optimized string implementation (attempt 2)Dimitri van Heesch2014-10-231-1/+1
|
* Bug 736992 - Member functions omitted from tagfileDimitri van Heesch2014-09-221-0/+1
|
* Added directory info to the contextDimitri van Heesch2014-03-011-0/+1
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Reduced and improved functionality of QListDimitri van Heesch2013-12-301-6/+7
| | | | | | | | | - 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.
* Added rudimentary support for django like template system for output creation.Dimitri van Heesch2013-10-211-0/+1
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-3/+3
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-5/+4
|
* Release-1.8.1.1Dimitri van Heesch2012-06-101-5/+8
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+3
|
* Release-1.7.5.1-20111027Dimitri van Heesch2011-10-271-4/+5
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+1
|
* Release-1.6.3-20100507Dimitri van Heesch2010-05-071-2/+2
|
* Release-1.6.2-20100124Dimitri van Heesch2010-01-241-1/+1
|
* Release-1.5.6-20080819Dimitri van Heesch2008-08-191-1/+9
|
* Release-1.5.5Dimitri van Heesch2008-02-101-0/+1
|
* Release-1.5.4-20080101Dimitri van Heesch2008-01-171-2/+2
|
* Release-1.5.4Dimitri van Heesch2008-01-161-1/+1
|
* Release-1.5.1-20070219Dimitri van Heesch2007-02-191-1/+1
|
* Release-1.5.1-20070107Dimitri van Heesch2007-01-071-1/+1
|
* Release-1.5.1-20061202Dimitri van Heesch2006-12-021-1/+1
|
* Release-1.4.7-20060809Dimitri van Heesch2006-08-091-2/+0
|