mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-11 14:37:56 -05:00
15 lines
142 B
C++
15 lines
142 B
C++
/*
|
|
* msg_types.cpp
|
|
*
|
|
*/
|
|
|
|
#include "msg_types.h"
|
|
|
|
#define X(NAME) #NAME,
|
|
|
|
const char* message_type_names[] = {
|
|
MESSAGE_TYPES
|
|
};
|
|
|
|
#undef X
|