mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-21 10:40:53 +03:00
14 lines
193 B
C++
14 lines
193 B
C++
#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
|