-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a header file including all the collections (#606)
* Add a header file including all the collections * Add new template to the documentation --------- Co-authored-by: jmcarcell <[email protected]> Co-authored-by: tmadlener <[email protected]>
- Loading branch information
1 parent
ab6b2a4
commit a716c01
Showing
4 changed files
with
41 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// AUTOMATICALLY GENERATED FILE - DO NOT EDIT | ||
|
||
#ifndef {{ package_name.upper() }}_{{ package_name }}_H | ||
#define {{ package_name.upper() }}_{{ package_name }}_H | ||
|
||
{% for name in includes %} | ||
#include "{{ incfolder }}{{ name }}" | ||
{% endfor %} | ||
|
||
#endif // {{ package_name.upper() }}_{{ package_name }}_H |