summaryrefslogtreecommitdiff
path: root/hscript/meta.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/meta.hh')
-rw-r--r--hscript/meta.hh8
1 files changed, 3 insertions, 5 deletions
diff --git a/hscript/meta.hh b/hscript/meta.hh
index 6515259..1db411d 100644
--- a/hscript/meta.hh
+++ b/hscript/meta.hh
@@ -20,15 +20,13 @@
namespace Horizon {
namespace Keys {
-class Hostname : public Key {
+class Hostname : public StringKey {
private:
- const std::string _name;
- Hostname(int _line, const std::string my_name) : Key(_line),
- _name(my_name) {}
+ Hostname(int _line, const std::string my_name) :
+ StringKey(_line, my_name) {}
public:
static Key *parseFromData(const std::string data, int lineno, int *errors,
int *warnings);
- const std::string name() const { return this->_name; }
bool validate() const override;
bool execute() const override;
};