Skip to content
Snippets Groups Projects
Commit 7e0d196a authored by Hahn, Steven's avatar Hahn, Steven
Browse files

Update class_maker.py.

parent 56129563
No related branches found
No related tags found
No related merge requests found
......@@ -28,14 +28,14 @@ def write_header(subproject, classname, filename, args):
# Create an Algorithm header; will not use it if not an algo
algorithm_header = """
const std::string name() const final;
int version() const final;
const std::string category() const final;
const std::string summary() const final;
const std::string name() const override final;
int version() const override final;
const std::string category() const override final;
const std::string summary() const override final;
private:
void init() final;
void exec() final;
void init() override final;
void exec() override final;
"""
alg_class_declare = " final : public API::Algorithm"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment