Files
MP-SPDZ/Processor/ReplicatedMachine.h
2019-01-05 15:10:01 +01:00

21 lines
382 B
C++

/*
* ReplicatedMachine.h
*
*/
#ifndef PROCESSOR_REPLICATEDMACHINE_H_
#define PROCESSOR_REPLICATEDMACHINE_H_
#include <string>
using namespace std;
template<class T, class U>
class ReplicatedMachine
{
public:
ReplicatedMachine(int argc, const char** argv, string name,
ez::ezOptionParser& opt, int nplayers = 3);
};
#endif /* PROCESSOR_REPLICATEDMACHINE_H_ */