15 lines
202 B
C++
15 lines
202 B
C++
#ifndef PREFERENCES_H
|
|
#define PREFERENCES_H
|
|
|
|
#include <wx/colour.h>
|
|
#include <map>
|
|
|
|
class Preferences
|
|
{
|
|
public:
|
|
std::map<wxString, wxColour> _colors;
|
|
std::list<wxString> _categories;
|
|
};
|
|
|
|
#endif
|