mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
19 lines
280 B
C++
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 */
|