Last active
August 2, 2017 14:57
-
-
Save odeblic/50f13fee11dbf19030d3945dcbd0c36a to your computer and use it in GitHub Desktop.
To be tested...
This file contains hidden or 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
#pragma once | |
{% block title %} | |
{% endblock %} | |
{% for this_class in all_classes %} | |
class {{ this_class.name }} | |
{ | |
{% for this_class in this_class.private %} | |
{% endfor %} | |
{% for this_class in this_class.public %} | |
{% endfor %} | |
TYPE IDENTIFIER ( TYPE ID, TYPE ID, TYPE ID, ...) CONST THROWSPEC | |
{ | |
} | |
{% if condition %} | |
{{ variable }} | |
{% elif condition %} | |
{{ variable }} | |
{% else %} | |
{% endif %} | |
}; | |
{{ user.username }} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment