mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-14 16:08:04 -05:00
30 lines
534 B
C++
30 lines
534 B
C++
/*
|
|
* PrivateOutput.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_PRIVATEOUTPUT_H_
|
|
#define PROCESSOR_PRIVATEOUTPUT_H_
|
|
|
|
#include <deque>
|
|
using namespace std;
|
|
|
|
template<class T> class SubProcessor;
|
|
|
|
template<class T>
|
|
class PrivateOutput
|
|
{
|
|
typedef typename T::open_type open_type;
|
|
|
|
SubProcessor<T>& proc;
|
|
deque<open_type> masks;
|
|
|
|
public:
|
|
PrivateOutput(SubProcessor<T>& proc) : proc(proc) { };
|
|
|
|
void start(int player, int target, int source);
|
|
void stop(int player, int dest, int source);
|
|
};
|
|
|
|
#endif /* PROCESSOR_PRIVATEOUTPUT_H_ */
|