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