21 lines
237 B
C++
21 lines
237 B
C++
#ifndef PREFERENCES_H
|
|
#define PREFERENCES_H
|
|
|
|
#include <wx/colour.h>
|
|
#include <vector>
|
|
|
|
struct category
|
|
{
|
|
wxString id;
|
|
wxString name;
|
|
wxColour color;
|
|
};
|
|
|
|
class Preferences
|
|
{
|
|
public:
|
|
std::vector<category> _categories;
|
|
};
|
|
|
|
#endif
|