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