Files
MP-SPDZ/Processor/IntInput.hpp
2021-07-02 15:50:34 +10:00

21 lines
280 B
C++

/*
* IntInput.cpp
*
*/
#ifndef PROCESSOR_INTINPUT_HPP_
#define PROCESSOR_INTINPUT_HPP_
#include "IntInput.h"
template<class T>
const char* IntInput<T>::NAME = "integer";
template<class T>
void IntInput<T>::read(std::istream& in, const int*)
{
in >> items[0];
}
#endif