Files
MP-SPDZ/Processor/ReplicatedPrivateOutput.h
Marcel Keller cc0711c224 MP-SPDZ.
2018-10-11 17:20:26 +11:00

24 lines
437 B
C++

/*
* ReplicatedPrivateOutput.h
*
*/
#ifndef PROCESSOR_REPLICATEDPRIVATEOUTPUT_H_
#define PROCESSOR_REPLICATEDPRIVATEOUTPUT_H_
class Processor;
template <class T>
class ReplicatedPrivateOutput
{
Processor& proc;
public:
ReplicatedPrivateOutput(Processor& proc) : proc(proc) {}
void start(int player, int target, int source);
void stop(int player, int source);
};
#endif /* PROCESSOR_REPLICATEDPRIVATEOUTPUT_H_ */