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

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