mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
18 lines
249 B
C++
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_ */
|