KissCount/model/Preferences.h

15 lines
211 B
C
Raw Normal View History

#ifndef PREFERENCES_H
#define PREFERENCES_H
#include <wx/colour.h>
#include <map>
class Preferences
{
2010-05-15 11:21:42 +02:00
public:
std::map<wxString, wxColour> _colors;
2010-05-24 20:14:15 +02:00
std::map<wxString, wxString> _categories;
};
#endif