#ifndef _GUITAR_CBCOMMANDS_HPP_ #define _GUITAR_CBCOMMANDS_HPP_ class CBCommands { public: typedef enum CBCommand{FBShowTab=0,FBPlayNote=1,FBPlayScale=2,FBPlayFrettedNotes=3,FBPlayChord=4,FBPlayTab=5,FBShowScale=6}; private: CBCommands(); }; inline CBCommands::CBCommands() { } #endif