summaryrefslogtreecommitdiff
path: root/hscript/meta.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/meta.hh')
-rw-r--r--hscript/meta.hh9
1 files changed, 8 insertions, 1 deletions
diff --git a/hscript/meta.hh b/hscript/meta.hh
index dad4cf3..547349d 100644
--- a/hscript/meta.hh
+++ b/hscript/meta.hh
@@ -88,7 +88,14 @@ public:
bool execute(ScriptOptions) const override;
};
-class SigningKey : public Key {
+class SigningKey : public StringKey {
+private:
+ SigningKey(int _line, const std::string &_path) :
+ StringKey(_line, _path) {}
+public:
+ static Key *parseFromData(const std::string &, int, int *, int *);
+ bool validate(ScriptOptions) const override;
+ bool execute(ScriptOptions) const override;
};
}