Files
MP-SPDZ/Tools/NetworkOptions.h
2019-04-30 17:25:02 +10:00

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_ */