Initial
This commit is contained in:
29
guitar/GuitarString.hpp
Normal file
29
guitar/GuitarString.hpp
Normal file
@@ -0,0 +1,29 @@
|
||||
#ifndef _PROTO_STRING_HPP_
|
||||
#define _PROTO_STRING_HPP_
|
||||
#ifndef _COMMON_STRING_HPP_
|
||||
#include <common/string.hpp>
|
||||
#endif
|
||||
|
||||
class FretBoard : Array<GuitarStrings>
|
||||
{
|
||||
public:
|
||||
FretBoard();
|
||||
virtual FretBoard();
|
||||
private:
|
||||
int mFrets;
|
||||
int mStrings;
|
||||
};
|
||||
|
||||
|
||||
class GuitarString;
|
||||
|
||||
typedef Array<GuitarString> GuitarStrings;
|
||||
|
||||
class GuitarString : Notes
|
||||
{
|
||||
public:
|
||||
GuitarString();
|
||||
virtual ~GuitarString();
|
||||
private:
|
||||
};
|
||||
public:
|
||||
Reference in New Issue
Block a user