summaryrefslogtreecommitdiff
path: root/hscript/meta.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/meta.hh')
-rw-r--r--hscript/meta.hh12
1 files changed, 10 insertions, 2 deletions
diff --git a/hscript/meta.hh b/hscript/meta.hh
index 912cabf..8d56abb 100644
--- a/hscript/meta.hh
+++ b/hscript/meta.hh
@@ -118,13 +118,21 @@ public:
bool execute() const override;
};
-class SvcEnable : public StringKey {
+class SvcEnable : public Key {
private:
+ const std::string _svc;
+ const std::string _runlevel;
+
SvcEnable(const Script *_s, const ScriptLocation &_pos,
- const std::string &_svc) : StringKey(_s, _pos, _svc) {}
+ const std::string &_sv, const std::string &_r) : Key(_s, _pos),
+ _svc(_sv), _runlevel(_r) {}
public:
static Key *parseFromData(const std::string &, const ScriptLocation &,
int *, int *, const Script *);
+
+ const std::string service() const { return this->_svc; }
+ const std::string runlevel() const { return this->_runlevel; }
+ bool validate() const override;
bool execute() const override;
};