mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-05 10:17:30 -05:00
17 lines
461 B
C++
17 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
|