Skip to content
Snippets Groups Projects
BasicCpu.tmpl.h 401 B
Newer Older
{% for incl in public_includes %}
{% if fq_namespace is not none %}
namespace {{fq_namespace}} {
{% endif %}

{% for function in functions %}
void {{ function.name }} ( {{ function | generate_function_parameter_list }} );
{% endfor %}

{% if fq_namespace is not none %}
} // namespace {{fq_namespace}}
{% endif %}