Merge pull request #1096 from fbraem/develop

Fix Redis_API
This commit is contained in:
Aleksandar Fabijanic 2015-12-23 16:54:21 +01:00
commit 81e98731b3
2 changed files with 4 additions and 3 deletions

View File

@ -73,7 +73,7 @@ private:
namespace Redis { namespace Redis {
class Redis_API PooledConnection class PooledConnection
/// Helper class for borrowing and returning a connection automatically from a pool. /// Helper class for borrowing and returning a connection automatically from a pool.
{ {
public: public:

View File

@ -18,6 +18,7 @@
#ifndef Redis_RedisStream_INCLUDED #ifndef Redis_RedisStream_INCLUDED
#define Redis_RedisStream_INCLUDED #define Redis_RedisStream_INCLUDED
#include "Poco/Redis/Redis.h"
#include "Poco/BufferedStreamBuf.h" #include "Poco/BufferedStreamBuf.h"
#include "Poco/Net/StreamSocket.h" #include "Poco/Net/StreamSocket.h"
@ -77,7 +78,7 @@ protected:
}; };
class RedisOutputStream: public RedisIOS, public std::ostream class Redis_API RedisOutputStream: public RedisIOS, public std::ostream
/// An output stream for writing to a Redis server. /// An output stream for writing to a Redis server.
{ {
public: public:
@ -91,7 +92,7 @@ public:
}; };
class RedisInputStream: public RedisIOS, public std::istream class Redis_API RedisInputStream: public RedisIOS, public std::istream
/// An input stream for reading from a Redis server. /// An input stream for reading from a Redis server.
{ {
public: public: