File indexing completed on 2025-02-09 04:28:27

0001 { % include licence | append : ".h" % }
0002 
0003 { % random 5 as rand % }
0004 #ifndef{{className.upper } } _H_{{rand } }
0005 #define{{className.upper } } _H_{{rand } }
0006 
0007 { % block includes % } { % endblock % } { % block forward_decls % } { % endblock % } { % block apidox % } /**
0008                                                                                                             @brief The {{ className }} class
0009 
0010                                                                                                             @author {{ author }}
0011                                                                                                             @date {% now "MMM yyyy" %}
0012                                                                                                           */
0013 {
0014     % endblock %
0015 }
0016 class
0017 {
0018     {
0019         className
0020     }
0021 }
0022 {
0023     % if baseClass %
0024 } : {{ baseClass.access }} {{ baseClass.type }} {% endif %}
0025 {
0026 {% block class_content %}
0027 {% endblock %}
0028 };
0029 
0030 #endif // {{ className.upper }}_H_{{ rand }}