Files
Work/guitar/CBCommands.hpp
2024-08-07 09:16:27 -04:00

17 lines
291 B
C++

#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