KissCount/model/Preferences.h
Grégory Soutadé ee8d4c0c8f Initial commit
A good base to start working
2010-05-14 15:04:01 +02:00

14 lines
169 B
C++

#ifndef PREFERENCES_H
#define PREFERENCES_H
#include <wx/colour.h>
#include <map>
class Preferences
{
private:
std::map<std::string, wxColour> _colors;
};
#endif