17 lines
208 B
C
17 lines
208 B
C
|
|
#ifndef QREDIS_COMMAND_H
|
||
|
|
#define QREDIS_COMMAND_H
|
||
|
|
|
||
|
|
#include "qredis_export.h"
|
||
|
|
|
||
|
|
namespace QRedis
|
||
|
|
{
|
||
|
|
class QREDIS_EXPORT Command
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
//...
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif // QREDIS_COMMAND_H
|