| 8 | #include "RedisHashModel.h" |
| 9 | |
| 10 | RedisModelFactory::RedisModelFactory(RedisClient* client) |
| 11 | { |
| 12 | Register("string", new RedisStringModel(client)); |
| 13 | Register("list", new RedisListModel(client)); |
| 14 | Register("set", new RedisSetModel(client)); |
| 15 | Register("zset", new RedisZSetModel(client)); |
| 16 | Register("hash", new RedisHashModel(client)); |
| 17 | } |
| 18 | |
| 19 | RedisModelFactory::~RedisModelFactory() |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected