-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Description
/*
*
*
* /cryptoTools/cryptoTools/Network/IoBuffer.h
*
*/
template <typename F>
class RefSendBuff :public FixedSendBuff {
public:
const F& mObj;
RefSendBuff(const F& obj)
: FixedSendBuff(channelBuffData(*obj), channelBuffSize(*obj))
, mObj(obj)
{}
RefSendBuff(RefSendBuff<F>&& v)
:RefSendBuff(v.obj) // "v" have not obj , I`m not sure. Could I replace "obj" with "mObj" .
{}
};
Metadata
Metadata
Assignees
Labels
No labels