From 9bb89135402a27ed3bc41cc82e8e6e4fe3381316 Mon Sep 17 00:00:00 2001 From: arches Date: Fri, 3 Jun 2016 06:01:51 -0400 Subject: [PATCH] Added Interface and Base class interfaces --- v3/include/IResponse.hpp | 9 +++++++++ v3/include/V3Response.hpp | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 v3/include/IResponse.hpp create mode 100644 v3/include/V3Response.hpp diff --git a/v3/include/IResponse.hpp b/v3/include/IResponse.hpp new file mode 100644 index 0000000..0514ff6 --- /dev/null +++ b/v3/include/IResponse.hpp @@ -0,0 +1,9 @@ +#ifndef __I_RESPONSE_HPP__ +#define __I_RESPONSE_HPP__ + +namespace etcdv3 +{ + class IResponse + { + }; +} diff --git a/v3/include/V3Response.hpp b/v3/include/V3Response.hpp new file mode 100644 index 0000000..665b1cf --- /dev/null +++ b/v3/include/V3Response.hpp @@ -0,0 +1,9 @@ +#ifndef __V3_RESPONSE_HPP__ +#define __V3_RESPONSE_HPP__ + +namespace etcdv3 +{ + class V3Response + { + }; +}