22 lines
399 B
C++
22 lines
399 B
C++
#ifndef _GUITAR_NOTEPATH_HPP_
|
|
#define _GUITAR_NOTEPATH_HPP_
|
|
#ifndef _COMMON_BLOCK_HPP_
|
|
#include <common/block.hpp>
|
|
#endif
|
|
#ifndef _COMMON_ARRAY_HPP_
|
|
#include <common/array.hpp>
|
|
#endif
|
|
#ifndef _GUITAR_FRETTEDNOTE_HPP_
|
|
#include <guitar/frettednote.hpp>
|
|
#endif
|
|
|
|
class NotePath;
|
|
typedef Array<NotePath> NotePaths;
|
|
|
|
class NotePath : public Block<FrettedNote>
|
|
{
|
|
public:
|
|
String toString(void);
|
|
};
|
|
#endif
|