Files
MP-SPDZ/Processor/ReplicatedPrivateOutput.h
2018-10-26 15:52:49 +11:00

27 lines
486 B
C++

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