blob: 09e11ef0b9b48a69d66c4ea3bca4261efd5a6cd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef enum_hh_INCLUDED
#define enum_hh_INCLUDED
#include "string.hh"
namespace Kakoune
{
template<typename T> struct EnumDesc { T value; StringView name; };
}
#endif // enum_hh_INCLUDED
|