17 lines
265 B
C++
17 lines
265 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};
|
|
private:
|
|
CBCommands();
|
|
};
|
|
|
|
inline
|
|
CBCommands::CBCommands()
|
|
{
|
|
}
|
|
#endif
|