mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
20 lines
327 B
C++
20 lines
327 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);
|
|
};
|
|
|
|
#endif /* PROCESSOR_REPLICATEDMACHINE_H_ */
|