added Redis library

This commit is contained in:
Günter Obiltschnig
2017-11-08 15:48:04 +01:00
parent 47043e0f4f
commit 6a0191ae6c
93 changed files with 16311 additions and 40 deletions

41
Redis/src/Error.cpp Normal file
View File

@@ -0,0 +1,41 @@
//
// Error.cpp
//
// $Id$
//
// Library: Redis
// Package: Redis
// Module: Error
//
// Implementation of the Error class.
//
// Copyright (c) 2015, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Redis/Error.h"
namespace Poco {
namespace Redis {
Error::Error()
{
}
Error::Error(const std::string& message): _message(message)
{
}
Error::~Error()
{
}
} } // namespace Poco::Redis