Added Interface and Base class interfaces

This commit is contained in:
arches 2016-06-03 06:01:51 -04:00
parent 6246968086
commit 9bb8913540
2 changed files with 18 additions and 0 deletions

9
v3/include/IResponse.hpp Normal file
View File

@ -0,0 +1,9 @@
#ifndef __I_RESPONSE_HPP__
#define __I_RESPONSE_HPP__
namespace etcdv3
{
class IResponse
{
};
}

View File

@ -0,0 +1,9 @@
#ifndef __V3_RESPONSE_HPP__
#define __V3_RESPONSE_HPP__
namespace etcdv3
{
class V3Response
{
};
}