[build] Add netgroup.cpp|h

These aren't used yet.
This commit is contained in:
John Newbery 2021-08-31 13:22:36 +01:00
parent 907659770b
commit 9b3836710b
3 changed files with 20 additions and 0 deletions

View File

@ -180,6 +180,7 @@ BITCOIN_CORE_H = \
net_types.h \
netaddress.h \
netbase.h \
netgroup.h \
netmessagemaker.h \
node/blockstorage.h \
node/caches.h \
@ -352,6 +353,7 @@ libbitcoin_node_a_SOURCES = \
init.cpp \
mapport.cpp \
net.cpp \
netgroup.cpp \
net_processing.cpp \
node/blockstorage.cpp \
node/caches.cpp \

5
src/netgroup.cpp Normal file
View File

@ -0,0 +1,5 @@
// 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.
#include <netgroup.h>

13
src/netgroup.h Normal file
View File

@ -0,0 +1,13 @@
// 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_NETGROUP_H
#define BITCOIN_NETGROUP_H
/**
* Netgroup manager
*/
class NetGroupManager {};
#endif // BITCOIN_NETGROUP_H