Skip to content

Instantly share code, notes, and snippets.

@gallirohik
Created August 1, 2018 13:04
Show Gist options
  • Select an option

  • Save gallirohik/da44f6a42c389c0e97dad83d55f5646f to your computer and use it in GitHub Desktop.

Select an option

Save gallirohik/da44f6a42c389c0e97dad83d55f5646f to your computer and use it in GitHub Desktop.
Myproject
#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