KissCount/model/Preferences.h

21 lines
237 B
C
Raw Normal View History

#ifndef PREFERENCES_H
#define PREFERENCES_H
#include <wx/colour.h>
2010-06-22 12:29:36 +02:00
#include <vector>
struct category
{
wxString id;
wxString name;
wxColour color;
};
class Preferences
{
2010-05-15 11:21:42 +02:00
public:
2010-06-22 12:29:36 +02:00
std::vector<category> _categories;
};
#endif