13 lines
216 B
C++
13 lines
216 B
C++
#include <guitar/notepath.hpp>
|
|
|
|
String NotePath::toString(void)
|
|
{
|
|
String strNotePath;
|
|
|
|
for(int index=0;index<size();index++)
|
|
{
|
|
strNotePath+=operator[](index).toString()+String("\n");
|
|
}
|
|
return strNotePath;
|
|
}
|