/usr/include/libMUSCLE-3.7/libMUSCLE/enumopts.h is in libmuscle-3.7-dev 3.7+4565-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #ifndef enumopts_h
#define enumopts_h
namespace muscle {
struct EnumOpt
	{
	const char *pstrOpt;
	int iValue;
	};
#define	s(t)		extern EnumOpt t##_Opts[];
#define c(t, x)		/* empty */
#define e(t)		/* empty */
#include "libMUSCLE/enums.h"	
} // namespace muscle
#endif // enumopts_h
 |