/* * Keys.h * * Created on: 10.02.2010 * Author: constantin */ #ifndef KEYS_H_ #define KEYS_H_ #include enum Keys { KEY_UP = 0, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ZOOM_IN, KEY_ZOOM_OUT, KEY_TOP, KEY_BOTTOM, KEY_LAST }; typedef std::bitset Keyset; #endif /* KEYS_H_ */