Skip to content

Commit

Permalink
Rename init() to initialize()
Browse files Browse the repository at this point in the history
  • Loading branch information
pnbabu committed Mar 11, 2024
1 parent e54ab2b commit 3fcfa5e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,18 @@
#include "{{synapse.get_name()}}.h"
{% endfor %}

class {{moduleName}} : public NESTExtensionInterface
class {{moduleName}} : public nest::NESTExtensionInterface
{
public:
{{moduleName}}() {}
~{{moduleName}}() {}

void init() override;
void initialize() override;
};

{{moduleName}} {{moduleName}}_LTX_module;

void {{moduleName}}::init()
void {{moduleName}}::initialize()
{
{%- if neurons %}
// register neurons
Expand Down

0 comments on commit 3fcfa5e

Please sign in to comment.