Initial
This commit is contained in:
12
guitar/notepath.cpp
Normal file
12
guitar/notepath.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user