Files
MP-SPDZ/GC/Program.cpp
2018-10-29 23:36:26 +11:00

19 lines
280 B
C++

/*
* Program.cpp
*
*/
#include "Instruction.hpp"
#include "Program.hpp"
namespace GC
{
template class Instruction<FakeSecret>;
template class Instruction<ReplicatedSecret>;
template class Program<FakeSecret>;
template class Program<ReplicatedSecret>;
} /* namespace GC */