#ifndef PREFERENCES_H #define PREFERENCES_H #include #include struct category { wxString id; wxString name; wxColour color; }; class Preferences { public: std::vector _categories; }; #endif