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