From 141fd9b9b5b02257521e41e71562bed6da2523dc Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 21 Mar 2023 00:37:04 -0400 Subject: Purification par le feu --- song.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 song.h (limited to 'song.h') diff --git a/song.h b/song.h deleted file mode 100644 index c8f08a1..0000000 --- a/song.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef __SONG_H__ -#define __SONG_H__ - -#include "chordNote.h" -#include - -// Contains a song for a guitar hero clone -class Song { - private: - std::string title; - std::string artist; - int duration; // in ms - std::string audioFile; // path to audio file - std::vector chords; - public: - Song(std::string chartFile); - ~Song(); - void consolidate(); // merges chords with the same start/end times - // into a single chord - ChordNote operator[](int index); - int size(); - - std::string getTitle(); - std::string getArtist(); - int getDuration(); - std::string getAudioFile(); - std::vector getChords(); -}; - -//#include "song.cpp" -#endif // __SONG_H__ - -- cgit v1.2.3