Files
MP-SPDZ/Math/ValueInterface.h

18 lines
249 B
C++

/*
* ValueInterface.h
*
*/
#ifndef MATH_VALUEINTERFACE_H_
#define MATH_VALUEINTERFACE_H_
class ValueInterface
{
public:
static int t() { return 0; }
static void init_default(int l) { (void) l; }
};
#endif /* MATH_VALUEINTERFACE_H_ */