summaryrefslogtreecommitdiff
path: root/hscript/key.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-07 17:48:21 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-07 17:48:21 -0500
commit90025fbec30a78e84794585bf93604d56b392267 (patch)
treed934f0776acb2f74a036e4528979b3885a1461a5 /hscript/key.hh
parentc335af83e021311635256435a1321462b8f5be51 (diff)
downloadhorizon-90025fbec30a78e84794585bf93604d56b392267.tar.gz
horizon-90025fbec30a78e84794585bf93604d56b392267.tar.bz2
horizon-90025fbec30a78e84794585bf93604d56b392267.tar.xz
horizon-90025fbec30a78e84794585bf93604d56b392267.zip
hscript: Implement key validity test
Diffstat (limited to 'hscript/key.hh')
-rw-r--r--hscript/key.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hscript/key.hh b/hscript/key.hh
index 6a18466..4705c59 100644
--- a/hscript/key.hh
+++ b/hscript/key.hh
@@ -29,7 +29,7 @@ public:
/*! Create the Key object with the specified data as the entire value.
* @returns nullptr if data is unparsable, otherwise a pointer to a Key.
*/
- static Key *parseFromData(std::string) { return nullptr; }
+ static Key *parseFromData(std::string, int*, int*) { return nullptr; }
/*! Determines if the data associated with the Key is valid. */
virtual bool validate() = 0;