mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
21 lines
249 B
C++
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_ */
|