Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / cls / lua / cls_lua_client.h
1 #ifndef CLS_LUA_CLIENT_HPP
2 #define CLS_LUA_CLIENT_HPP
3 #include <string>
4
5 #include "include/buffer_fwd.h"  // for bufferlist
6
7 namespace librados {
8   class IoCtx;
9 }
10
11 namespace cls_lua_client {
12   int exec(librados::IoCtx& ioctx, const std::string& oid,
13       const std::string& script, const std::string& handler,
14       librados::bufferlist& inbl, librados::bufferlist& outbl);
15 }
16
17 #endif