Files
MP-SPDZ/Processor/DummyProtocol.h
2018-10-26 15:52:49 +11:00

21 lines
249 B
C++

/*
* DummyProtocol.h
*
*/
#ifndef PROCESSOR_DUMMYPROTOCOL_H_
#define PROCESSOR_DUMMYPROTOCOL_H_
class Player;
class DummyProtocol
{
public:
DummyProtocol(Player& P)
{
(void) P;
}
};
#endif /* PROCESSOR_DUMMYPROTOCOL_H_ */