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

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