mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 05:03:59 -05:00
21 lines
280 B
C++
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
|