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

0001 {% load kdev_filters %}
0002 {% include "license_header_cpp.txt" %}
0003 
0004 
0005 {% block include_guard_open %}
0006 #ifndef {% include "include_guard_cpp.txt" %}
0007 #define {% include "include_guard_cpp.txt" %}
0008 {% endblock include_guard_open %}
0009 
0010 
0011 {% block includes %}
0012 {% for included_file in included_files %}
0013 #include {{ included_file }}
0014 {% endfor %}
0015 {% endblock includes %}
0016 
0017 
0018 {% block namespaces_open %}
0019 {% include "namespace_open_cpp.txt" %}
0020 {% endblock namespaces_open %}
0021 
0022 
0023 {% block forward_declarations %}
0024 {% endblock forward_declarations %}
0025 
0026 
0027 {% block class_declaration_open %}
0028 {% include "class_declaration_apidox_cpp.txt" %}
0029 {% include "class_declaration_cpp.txt" %}
0030 {
0031 {% endblock class_declaration_open %}
0032 {% block class_body %}
0033 {% if public_functions %}
0034 
0035 public:
0036     {% for method in public_functions %}
0037 
0038     {% include "class_method_declaration_apidox_cpp.txt" %}
0039     {% include "class_method_declaration_cpp.txt" %}
0040 
0041     {% endfor %}
0042 
0043 {% endif %}
0044 {% if protected_functions %}
0045 
0046 protected:
0047     {% for method in protected_functions %}
0048 
0049     {% include "class_method_declaration_apidox_cpp.txt" %}
0050     {% include "class_method_declaration_cpp.txt" %}
0051 
0052     {% endfor %}
0053 
0054 {% endif %}
0055 {% if private_functions %}
0056 
0057 private:
0058     {% for method in private_functions %}
0059 
0060     {% include "class_method_declaration_apidox_cpp.txt" %}
0061     {% include "class_method_declaration_cpp.txt" %}
0062 
0063     {% endfor %}
0064 
0065 {% endif %}
0066 {% endblock class_body %}
0067 {% block class_bottom %}
0068 {% endblock %}
0069 {% block class_declaration_close %}
0070 };
0071 {% endblock %}
0072 
0073 
0074 {% block outside_class %}
0075 {% endblock %}
0076 
0077 
0078 {% block namespaces_close %}
0079 {% include "namespace_close_cpp.txt" %}
0080 {% endblock namespaces_close %}
0081 
0082 
0083 {% block outside_namespace %}
0084 {% endblock %}
0085 
0086 
0087 {% block include_guard_close %}
0088 #endif // {% include "include_guard_cpp.txt" %}
0089 {% endblock include_guard_close %}