1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
{% extends "cpp_implementation.cpp" %}
{% load kdev_filters %}
{% block includes %}
{{ block.super }}
#include <QSharedData>
{% endblock includes %}
{% block extra_declarations %}
class {% if namespaces %}{{ namespaces|join:"::" }}::{% endif %}{{ name }}Data : public QSharedData
{
public:
{% for member in members %}
{{ member.type }} {{ member.name }};
{% endfor %}
};
{% for method in private_functions %}
{% include "method_definition_cpp.txt" %}
{
{% if method.type %}
return {{ method.default_return_value }};
{% endif %}
}
{% endfor %}
{% endblock extra_declarations %}
{% block function_definitions %}
{% for method in public_functions %}
{% with method.arguments as arguments %}
{% include "method_definition_cpp.txt" %}
{% if method.isConstructor %}
{% with arguments|first as argFirst %}
{# copy constructor? #}
{% if arguments|length == 1 and argFirst.type == method.name|arg_type %}
: d({{ argFirst.name }}.d)
{% else %}
: d(new {{ name }}Data())
{% endif %}
{% endwith %}
{% endif %}
{
{% if "operator=" == method.name %}
d = other.d;
return *this;
{% else %}
{% if method.type %}return {{ method.default_return_value }};
{% endif %}
{% endif %}
}
{% endwith %}
{% endfor %}
{% for method in protected_functions %}
{% with method.arguments as arguments %}
{% include "method_definition_cpp.txt" %}
{% if method.isConstructor %}
{% with arguments|first as argFirst %}
{# copy constructor? #}
{% if arguments|length == 1 and argFirst.type == method.name|arg_type %}
: d({{ argFirst.name }}.d)
{% else %}
: d(new {{ name }}Data())
{% endif %}
{% endwith %}
{% endif %}
{
{% if method.type %}return {{ method.default_return_value }};
{% endif %}
}
{% endwith %}
{% endfor %}
{% for property in members %}
{% include "class_property_getter_definition_cpp.txt" %}
{
return d->{{ property.name }};
}
{% include "class_property_setter_definition_cpp.txt" %}
{
d->{{ property.name }} = {{ property.name }};
}
{% endfor %}
{% endblock function_definitions %}
|