summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Only build the master branch in addition to PRsChristoph Schlosser2017-12-161-2/+2
|
* Add actual checkboxes to PR templateChristoph Schlosser2017-12-161-8/+8
|
* Add issue and PR templateChristoph Schlosser2017-12-162-0/+48
|
* Generation tests should suffice for nowChristoph Schlosser2017-12-161-30/+0
|
* Add more testsChristoph Schlosser2017-12-161-0/+82
|
* Add basic testsChristoph Schlosser2017-12-167-5/+279
|
* Cleanup Parser interfaceChristoph Schlosser2017-12-163-4/+3
|
* Update README.mdChristoph Schlosser2017-12-161-1/+1
|
* Release 0.0.70.0.7Christoph Schlosser2017-11-232-1/+7
|
* Merge pull request #32 from rowanG077/masterChristoph Schlosser2017-11-232-39/+10
|\ | | | | Fixed parser bug and comment generation bug.
| * Merge branch 'master' into masterrowanG0772017-11-233-16/+6
| |\ | |/ |/|
* | Release 0.0.60.0.6Christoph Schlosser2017-11-053-16/+6
| |
* | Merge pull request #27 from rowanG077/masterChristoph Schlosser2017-11-051-0/+5
|\ \ | | | | | | FIxed access specifier generating a comment based on the function below it.
| | * -- Fixed bug where type modifiers like unsigned signed weren't properly ↵Rowan Goemans2017-11-231-33/+8
| | | | | | | | | | | | recognized.
| | * -- Fixed error where endReplace was used before declaration.Rowan Goemans2017-11-231-1/+1
| | |
| | * -- Fixed unused assignment.Rowan Goemans2017-11-231-2/+1
| | |
| | * -- Fixed bug where using a different trigger sequence then "*" causes a ↵Rowan Goemans2017-11-231-5/+2
| |/ | | | | | | newline to be addd between the comment and the documented entity.
| * Merge branch 'master' of https://github.com/christophschlosser/doxdocgenRowan Goemans2017-11-051-1/+0
| |\ | |/ |/|
* | -- Refactored stripping initializer list and assignment token into function.Rowan Goemans2017-11-051-15/+23
| |
* | -- Fixed problem where initializer list where not working correctly.Rowan Goemans2017-11-051-9/+16
| |
* | -- Modified parser to never return null. It will no always generate an empty ↵Rowan Goemans2017-11-051-3/+4
| | | | | | | | doxygen comment. usable for Describing instance variables. Enum, structs etc.
* | -- Added support for null in the comment generation.Rowan Goemans2017-11-051-1/+1
| |
* | -- Added support for void function no return get generated for them.Rowan Goemans2017-11-051-1/+15
| | | | | | | | | | -- Added support for return of void pointers. They will get generated. -- Added support for return a pointer to a bool. There an extra return is added in addtion to "true" and "false". "null".
* | -- Cleaned up some code and refactored functions.Rowan Goemans2017-11-054-236/+300
| | | | | | | | | | | | -- Added support for infinitely nesting function pointers. -- Added support for assignment of functions with trailing returns. -- Added support for desctructors.
* | -- Completely rewritten parser to support all known(to me) C++ constructs, ↵Rowan Goemans2017-11-057-182/+638
| | | | | | | | | | | | | | | | | | | | | | this includes: - Function pointers as parameters and as returns. - Template support. - Trailing return type. - Variadic templates. - Variadic parametes, C style and template style. - Correct parsing of template types with more then 1 template parameter.
| * -- Fixed issue where generating a comment above an access specifier resulted ↵Rowan Goemans2017-11-051-0/+6
| | | | | | | | in the access specifier being considered a symbol.
| * -- Refactored stripping initializer list and assignment token into function.Rowan Goemans2017-11-051-15/+23
| |
| * -- Fixed problem where initializer list where not working correctly.Rowan Goemans2017-11-051-9/+16
| |
| * -- Modified parser to never return null. It will no always generate an empty ↵Rowan Goemans2017-11-051-3/+4
| | | | | | | | doxygen comment. usable for Describing instance variables. Enum, structs etc.
| * -- Added support for null in the comment generation.Rowan Goemans2017-11-051-1/+1
| |
| * -- Added support for void function no return get generated for them.Rowan Goemans2017-11-051-1/+15
| | | | | | | | | | -- Added support for return of void pointers. They will get generated. -- Added support for return a pointer to a bool. There an extra return is added in addtion to "true" and "false". "null".
| * -- Cleaned up some code and refactored functions.Rowan Goemans2017-11-054-236/+300
| | | | | | | | | | | | -- Added support for infinitely nesting function pointers. -- Added support for assignment of functions with trailing returns. -- Added support for desctructors.
| * -- Completely rewritten parser to support all known(to me) C++ constructs, ↵Rowan Goemans2017-10-307-182/+638
|/ | | | | | | | | | | this includes: - Function pointers as parameters and as returns. - Template support. - Trailing return type. - Variadic templates. - Variadic parametes, C style and template style. - Correct parsing of template types with more then 1 template parameter.
* Merge pull request #21 from christophschlosser/fix-release-0.0.50.0.5Christoph Schlosser2017-10-171-0/+0
|\ | | | | Add icon.png back in
| * Add icon.png back inChristoph Schlosser2017-10-171-0/+0
|/
* Merge pull request #20 from christophschlosser/release-0.0.5Christoph Schlosser2017-10-1615-7/+19
|\ | | | | Release 0.0.5
| * Release 0.0.5Christoph Schlosser2017-10-1615-7/+19
|/ | | | | | - Add extensive generation customization system - Generate documentation for function pointers as parameters
* Merge pull request #17 from christophschlosser/fix-func-ptr-paramChristoph Schlosser2017-10-163-9/+55
|\ | | | | Fix param generation for function pointers
| * Add function pointers to known issuesChristoph Schlosser2017-10-151-1/+15
| |
| * Fix param generation for function pointersChristoph Schlosser2017-10-152-8/+40
|/ | | | Fixes #10
* Merge pull request #16 from rowanG077/masterChristoph Schlosser2017-10-156-149/+240
|\ | | | | -- Added extensive templating the be able to generated different type…
| * -- Fixed issues from review.Rowan Goemans2017-10-153-10/+10
| |
| * -- Fixed various issues that came out of the pull request review.Rowan Goemans2017-10-153-23/+25
| |
| * -- Fixed bad newline in constructor of CGen.Rowan Goemans2017-10-151-2/+1
| |
| * -- Added defaults to configuration reader in CGen.Rowan Goemans2017-10-151-8/+8
| |
| * -- Removed unnecesary member variable.Rowan Goemans2017-10-151-2/+1
| |
| * -- Fixed issue in setting the cursor if no brief was specified. Cursor is ↵Rowan Goemans2017-10-151-7/+17
| | | | | | | | new set to the first DoxyGen command in the comment.
| * -- tslint fix v3Rowan Goemans2017-10-151-11/+11
| |
| * -- Fixed tslint issues v2Rowan Goemans2017-10-152-17/+17
| |
| * -- Fixed tslint issues.Rowan Goemans2017-10-156-37/+75
| | | | | | | | -- Added config parameter to add type information to return DoxyGen parameter.