File indexing completed on 2024-05-05 04:37:27

0001 {% load kdev_filters %}
0002 {% include "license_header_cpp.txt" %}
0003 
0004 
0005 {% block includes %}
0006 #include "{{ output_file_header }}"
0007 {% endblock includes %}
0008 
0009 
0010 {% block namespaces_use %}
0011 {% include "namespace_use_cpp.txt" %}
0012 {% endblock namespaces_use %}
0013 
0014 
0015 {% block extra_declarations %}
0016 {% endblock extra_declarations %}
0017 
0018 
0019 {% block extra_definitions %}
0020 {% endblock extra_definitions %}
0021 
0022 
0023 {% block function_definitions %}
0024 {% for method in functions %}
0025 {% include "method_definition_cpp.txt" %}
0026 {
0027 
0028 
0029 }
0030 
0031 
0032 {% endfor %}
0033 
0034 {% endblock function_definitions %}
0035 
0036 
0037 {% block bottom %}
0038 {% endblock %}