mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
23 lines
339 B
C++
23 lines
339 B
C++
/*
|
|
* NetworkOptions.h
|
|
*
|
|
*/
|
|
|
|
#ifndef TOOLS_NETWORKOPTIONS_H_
|
|
#define TOOLS_NETWORKOPTIONS_H_
|
|
|
|
#include "ezOptionParser.h"
|
|
|
|
#include <string>
|
|
|
|
class NetworkOptions
|
|
{
|
|
public:
|
|
int portnum_base;
|
|
std::string hostname;
|
|
|
|
NetworkOptions(ez::ezOptionParser& opt, int argc, const char** argv);
|
|
};
|
|
|
|
#endif /* TOOLS_NETWORKOPTIONS_H_ */
|