summaryrefslogtreecommitdiffstats
path: root/src/filedef.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-3/+3
| | | | | | | | | | | | | | | | | 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-3/+7
|
* 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: Replaced QFileInfo with FileInfoDimitri van Heesch2021-03-181-1/+1
| | | | | - FileInfo is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17.
* Refactoring: remove unused function generateFileTree()Dimitri van Heesch2021-01-221-49/+0
|
* Refactoring: modernize FileListDimitri van Heesch2021-01-221-13/+10
|
* Refactoring: modernize OutputNameList/OutputNameDictDimitri van Heesch2021-01-221-24/+0
|
* Refactoring: modernize IncludeInfo listDimitri van Heesch2021-01-221-9/+14
|
* Refactoring: remove unused sortdict.hDimitri van Heesch2021-01-221-1/+0
|
* Refactoring: modernize getMemberLists()Dimitri van Heesch2021-01-041-1/+1
|
* Refactoring: replace MemberSDict by MemberLinkedRefMapDimitri van Heesch2021-01-041-3/+3
|
* Refactoring: remove unused ClassListDimitri van Heesch2021-01-021-1/+0
|
* Refactoring: change MemberGroupSDict to MemberGroupListDimitri van Heesch2020-12-301-2/+1
|
* Refactoring: replaced getNamespaceSDict() by getNamespaces()Dimitri van Heesch2020-12-231-3/+3
|
* Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-191-3/+2
|
* Improve handling of inline namespace members in LateX/RTF outputDimitri van Heesch2020-12-021-1/+1
|
* Refactoring: removing setVisited/isVisited membersDimitri van Heesch2020-11-201-5/+7
|
* Refactoring: replacing dynamic_cast by static_cast to improve performanceDimitri van Heesch2020-11-131-1/+10
|
* 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.
* Refactoring: modernized the getUsedNamespaces() methodDimitri van Heesch2020-11-011-1/+1
|
* Refactoring: modernize getUsedClasses() methodDimitri van Heesch2020-10-291-2/+3
|
* Refactoring: prepare output generators for multi-threaded useDimitri van Heesch2020-09-271-1/+3
|
* Refactor: Modernize clang parser and make it run with multiple threadsDimitri van Heesch2020-07-161-5/+5
|
* Refactor: make preprocessor run in parallelDimitri van Heesch2020-06-281-3/+2
| | | | | And at the same time make sure it gives the same results as when processed using a single thread.
* Refactor: make QCString a wrapper around std::stringDimitri van Heesch2020-06-101-12/+12
|
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-1/+1
|
* Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-3/+7
|
* Refactored Definition and derived classes such that they are abstract interfacesDimitri van Heesch2019-02-281-138/+80
|
* Added *.ice files as a recognized file type.Mark Spruiell2018-10-221-1/+5
| | | | Added a Slice-optimized output mode.
* Optimized use of convertNameToFile to improve performanceDimitri van Heesch2016-02-071-8/+9
|
* IncludeInfo class had uninitialized member variableDimitri van Heesch2015-09-131-1/+1
|
* 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/+2
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Reduced and improved functionality of QListDimitri van Heesch2013-12-301-7/+4
| | | | | | | | | - 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/+4
|
* Added rudimentary support for django like template system for output creation.Dimitri van Heesch2013-10-211-0/+2
|
* Fixed a number of compiler warnings reported by newer clang compilerDimitri van Heesch2013-09-181-1/+0
|
* Release-1.8.3.1-20130512Dimitri van Heesch2013-05-121-64/+66
|
* Release-1.8.3.1-20130402Dimitri van Heesch2013-04-021-1/+2
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-3/+3
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-16/+10
|
* Release-1.8.1.1Dimitri van Heesch2012-06-101-15/+13
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+1
|
* Release-1.7.6.1-20111226Dimitri van Heesch2011-12-261-5/+2
|
* Release-1.7.5.1-20111027Dimitri van Heesch2011-10-271-2/+4
|
* Release-1.7.5.1-20110925Dimitri van Heesch2011-09-251-2/+4
|
* Release-1.7.5Dimitri van Heesch2011-08-141-4/+4
|