15 lines
348 B
C++
15 lines
348 B
C++
/*
|
|
* Copyright (C) 2014 Cloudius Systems, Ltd.
|
|
*/
|
|
|
|
#ifndef APPS_SEASTAR_THRIFT_HANDLER_HH_
|
|
#define APPS_SEASTAR_THRIFT_HANDLER_HH_
|
|
|
|
#include "Cassandra.h"
|
|
#include "database.hh"
|
|
#include <memory>
|
|
|
|
std::unique_ptr<org::apache::cassandra::CassandraCobSvIfFactory> create_handler_factory(database& db);
|
|
|
|
#endif /* APPS_SEASTAR_THRIFT_HANDLER_HH_ */
|