mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-16 03:43:04 +02:00
18 lines
461 B
C++
18 lines
461 B
C++
// Copyright (c) 2021 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_IPC_CAPNP_PROTOCOL_H
|
|
#define BITCOIN_IPC_CAPNP_PROTOCOL_H
|
|
|
|
#include <memory>
|
|
|
|
namespace ipc {
|
|
class Protocol;
|
|
namespace capnp {
|
|
std::unique_ptr<Protocol> MakeCapnpProtocol();
|
|
} // namespace capnp
|
|
} // namespace ipc
|
|
|
|
#endif // BITCOIN_IPC_CAPNP_PROTOCOL_H
|