From 5a8727e34b938b70623ca865273fd81c7604b461 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 13 Mar 2018 06:26:06 +0100 Subject: Expose include dir --- include/DatabaseNode.hpp | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 include/DatabaseNode.hpp (limited to 'include/DatabaseNode.hpp') diff --git a/include/DatabaseNode.hpp b/include/DatabaseNode.hpp deleted file mode 100644 index 3ca4be3..0000000 --- a/include/DatabaseNode.hpp +++ /dev/null @@ -1,31 +0,0 @@ -#pragma once - -#include "Hash.hpp" -#include - -namespace odhtdb -{ - class DatabaseNode - { - public: - DatabaseNode(const std::shared_ptr &_encryptionKey, const std::shared_ptr &_nodeHash) : - encryptionKey(_encryptionKey), - nodeHash(_nodeHash) - { - - } - - const std::shared_ptr getNodeEncryptionKey() const - { - return encryptionKey; - } - - const std::shared_ptr getRequestHash() const - { - return nodeHash; - } - private: - std::shared_ptr encryptionKey; - std::shared_ptr nodeHash; - }; -} -- cgit v1.2.3