All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.threerings.presents.tools.cpp.receiver_h.mustache Maven / Gradle / Ivy

The newest version!
#pragma once

#include "{{decoderName}}.h"
{{#includes}}
#include "{{this}}"
{{/includes}}

{{#namespaces}}namespace {{this}} { {{/namespaces}}


class {{receiverName}} {
public:
    typedef {{decoderName}} Decoder;

{{#methods}}
    virtual void {{methodName}} ({{arguments}}) = 0;
{{/methods}}
};

{{#namespaces}}
}{{/namespaces}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy