mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 05:03:59 -05:00
27 lines
392 B
C++
27 lines
392 B
C++
/*
|
|
* IntInput.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_INTINPUT_H_
|
|
#define PROCESSOR_INTINPUT_H_
|
|
|
|
#include <iostream>
|
|
|
|
template<class T>
|
|
class IntInput
|
|
{
|
|
public:
|
|
const static int N_DEST = 1;
|
|
const static int N_PARAM = 0;
|
|
const static char* NAME;
|
|
|
|
const static int TYPE = 0;
|
|
|
|
T items[N_DEST];
|
|
|
|
void read(std::istream& in, const int* params);
|
|
};
|
|
|
|
#endif /* PROCESSOR_INTINPUT_H_ */
|