#ifndef _GUITAR_NOTEPATH_HPP_ #define _GUITAR_NOTEPATH_HPP_ #ifndef _COMMON_BLOCK_HPP_ #include #endif #ifndef _COMMON_ARRAY_HPP_ #include #endif #ifndef _GUITAR_FRETTEDNOTE_HPP_ #include #endif class NotePath; typedef Array NotePaths; class NotePath : public Block { public: String toString(void); }; #endif