#include "song.h" Song::Song(std::string chartFile) { // TODO: import and parse chartFile } Song::~Song() {}; void Song::consolidate() { int totalSize = chords.size(); // Check each chord against every other chord for (int i=0; i Song::getChords() { return chords; }