Created
August 1, 2018 13:04
-
-
Save gallirohik/da44f6a42c389c0e97dad83d55f5646f to your computer and use it in GitHub Desktop.
Myproject
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream> | |
| #include<vector> | |
| #include "Song.h" | |
| using namespace std; | |
| class AllSongs{ | |
| private: | |
| vector< Song > Songs; | |
| int count; | |
| void setCount(){ | |
| count=0; | |
| } | |
| public: | |
| void displaySongs(); | |
| int AddSong(Song newSong); | |
| int deleteSong(); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment