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

0001 {% extends "cpp_header.h" %}
0002 
0003 
0004 {% block include_guard_open %}
0005 {% with "_P_H" as include_guard_suffix %}
0006 #ifndef {% include "include_guard_cpp.txt" %}
0007 #define {% include "include_guard_cpp.txt" %}
0008 {% endwith %}
0009 {% endblock include_guard_open %}
0010 
0011 
0012 {% block class_declaration_open %}
0013 {% include "class_declaration_apidox_cpp.txt" %}
0014 class {{ name }}Private
0015 {
0016 {% endblock class_declaration_open %}
0017 
0018 
0019 {% block class_body %}
0020 public:
0021     {% for method in private_functions %}
0022 
0023         {% include "class_method_declaration_apidox_cpp.txt" %}
0024         {% include "class_method_declaration_cpp.txt" %}
0025 
0026     {% endfor %}
0027     {% for property in members %}
0028 
0029     {{property.type}} {{property.name}};
0030     {% endfor %}
0031 {% endblock class_body %}
0032 
0033 
0034 {% block include_guard_close %}
0035 {% with "_P_H" as include_guard_suffix %}
0036 #endif // {% include "include_guard_cpp.txt" %}
0037 {% endwith %}
0038 {% endblock include_guard_close %}