mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
33 lines
640 B
C++
33 lines
640 B
C++
/*
|
|
* ReplicatedPrivateOutput.cpp
|
|
*
|
|
*/
|
|
|
|
#include "ReplicatedPrivateOutput.h"
|
|
#include "Processor.h"
|
|
#include "Math/FixedVec.h"
|
|
#include "Math/Integer.h"
|
|
|
|
template<class T>
|
|
inline ReplicatedPrivateOutput<T>::ReplicatedPrivateOutput(
|
|
SubProcessor<T>& proc) :
|
|
proc(proc)
|
|
{
|
|
}
|
|
|
|
template<class T>
|
|
void ReplicatedPrivateOutput<T>::start(int player, int target,
|
|
int source)
|
|
{
|
|
(void)player, (void)target, (void)source;
|
|
throw not_implemented();
|
|
}
|
|
|
|
template<class T>
|
|
void ReplicatedPrivateOutput<T>::stop(int player, int source)
|
|
{
|
|
(void)player, (void)source;
|
|
}
|
|
|
|
template class ReplicatedPrivateOutput<Rep3Share>;
|