mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
23 lines
392 B
C++
23 lines
392 B
C++
/*
|
|
* MalRepRingOptions.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROTOCOLS_MALREPRINGOPTIONS_H_
|
|
#define PROTOCOLS_MALREPRINGOPTIONS_H_
|
|
|
|
#include "Tools/ezOptionParser.h"
|
|
|
|
class MalRepRingOptions
|
|
{
|
|
public:
|
|
static MalRepRingOptions singleton;
|
|
|
|
bool shuffle;
|
|
|
|
MalRepRingOptions();
|
|
MalRepRingOptions(ez::ezOptionParser& opt, int argc, const char** argv);
|
|
};
|
|
|
|
#endif /* PROTOCOLS_MALREPRINGOPTIONS_H_ */
|