memgraph/server/uv/core.hpp
2015-08-30 01:12:46 +02:00

14 lines
161 B
C++

#ifndef MEMGRAPH_SERVER_UV_CORE_HPP
#define MEMGRAPH_SERVER_UV_CORE_HPP
#include <uv.h>
namespace uv
{
using callback_t = void (*)(uv_handle_t *);
}
#endif