Files
MP-SPDZ/Processor/IntInput.h
2019-07-11 14:59:18 +10:00

24 lines
345 B
C++

/*
* IntInput.h
*
*/
#ifndef PROCESSOR_INTINPUT_H_
#define PROCESSOR_INTINPUT_H_
#include <iostream>
class IntInput
{
public:
const static int N_DEST = 1;
const static int N_PARAM = 0;
const static char* NAME;
long items[N_DEST];
void read(std::istream& in, const int* params);
};
#endif /* PROCESSOR_INTINPUT_H_ */