diff options
Diffstat (limited to 'hscript/network.cc')
-rw-r--r-- | hscript/network.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hscript/network.cc b/hscript/network.cc index 1c8edd1..e5ca787 100644 --- a/hscript/network.cc +++ b/hscript/network.cc @@ -28,3 +28,16 @@ Key *Network::parseFromData(const std::string data, int lineno, int *errors, bool Network::execute(ScriptOptions) const { return false; } + +Key *NetAddress::parseFromData(const std::string data, int lineno, int *errors, + int *warnings) { + return nullptr; +} + +bool NetAddress::validate(ScriptOptions) const { + return false; +} + +bool NetAddress::execute(ScriptOptions) const { + return false; +} |