mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
30 lines
333 B
C++
30 lines
333 B
C++
/*
|
|
* DummyProtocol.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_DUMMYPROTOCOL_H_
|
|
#define PROCESSOR_DUMMYPROTOCOL_H_
|
|
|
|
class Player;
|
|
|
|
class DummyMC
|
|
{
|
|
public:
|
|
void Check(Player& P)
|
|
{
|
|
(void) P;
|
|
}
|
|
};
|
|
|
|
class DummyProtocol
|
|
{
|
|
public:
|
|
DummyProtocol(Player& P)
|
|
{
|
|
(void) P;
|
|
}
|
|
};
|
|
|
|
#endif /* PROCESSOR_DUMMYPROTOCOL_H_ */
|