6 #ifndef BITCOIN_NETMESSAGEMAKER_H 7 #define BITCOIN_NETMESSAGEMAKER_H 17 template <
typename... Args>
21 msg.
command = std::move(sCommand);
26 template <
typename... Args>
29 return Make(0, std::move(sCommand), std::forward<Args>(
args)...);
36 #endif // BITCOIN_NETMESSAGEMAKER_H Definition: netmessagemaker.h:12
Definition: serialize.h:175
const int nVersion
Definition: netmessagemaker.h:33
std::string command
Definition: net.h:108
args
Definition: filter-lcov.py:10
std::vector< unsigned char > data
Definition: net.h:107
CSerializedNetMsg Make(int nFlags, std::string sCommand, Args &&... args) const
Definition: netmessagemaker.h:18
CSerializedNetMsg Make(std::string sCommand, Args &&... args) const
Definition: netmessagemaker.h:27
CNetMsgMaker(int nVersionIn)
Definition: netmessagemaker.h:15