2013-06-30 02:34:10 +08:00
|
|
|
#include <qredis/client.h>
|
2013-06-30 03:04:01 +08:00
|
|
|
#include "client_p.h"
|
2013-06-30 02:34:10 +08:00
|
|
|
|
|
|
|
|
using namespace QRedis;
|
|
|
|
|
|
|
|
|
|
Client::Client()
|
2013-06-30 03:04:01 +08:00
|
|
|
: d(new ClientPrivate)
|
2013-06-30 02:34:10 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Client::~Client()
|
|
|
|
|
{
|
2013-06-30 03:04:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Client::connectToHost()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Client::disconnectFromHost()
|
|
|
|
|
{
|
|
|
|
|
}
|