kakoune/src/color_registry.hh
2012-09-17 21:01:11 +02:00

29 lines
553 B
C++

#ifndef color_registry_hh_INCLUDED
#define color_registry_hh_INCLUDED
#include <unordered_map>
#include "color.hh"
#include "utils.hh"
namespace Kakoune
{
using ColorPair = std::pair<Color, Color>;
class ColorRegistry : public Singleton<ColorRegistry>
{
public:
const ColorPair& operator[](const String& colordesc);
void register_alias(const String& name, const String& colordesc,
bool override = false);
private:
std::unordered_map<String, ColorPair> m_aliases;
};
}
#endif // color_registry_hh_INCLUDED