Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
ipc_client.cpp
Go to the documentation of this file.
4#include <cstddef>
5#include <memory>
6#include <string>
7
8namespace bb::ipc {
9
11{
12 return std::make_unique<SocketClient>(socket_path);
13}
14
16{
17 return std::make_unique<ShmClient>(base_name);
18}
19
20} // namespace bb::ipc
static std::unique_ptr< IpcClient > create_socket(const std::string &socket_path)
static std::unique_ptr< IpcClient > create_shm(const std::string &base_name)
constexpr decltype(auto) get(::tuplet::tuple< T... > &&t) noexcept
Definition tuple.hpp:13