KissCount/model/Preferences.h

14 lines
169 B
C
Raw Normal View History

#ifndef PREFERENCES_H
#define PREFERENCES_H
#include <wx/colour.h>
#include <map>
class Preferences
{
private:
std::map<std::string, wxColour> _colors;
};
#endif