https://github.com/ghulamghousdev/playlist-manager
This is a C++ Program which manages a playlist of songs. The PlayList class manages a dynamically allocated array of song objects. The song class is provided for you in song.h and song.cpp, which should NOT be modified. Your playlist class will be implemented in two files proj5_playlist.h and proj5_playlist.cpp. The class will support two basic functions: Managing the playlist. This includes adding and deleting songs. Playing from the play list. This includes keeping track of which is the next song to be played. Obviously we will not actually be playing any music. “Playing” the song will consist of printing the name.
https://github.com/ghulamghousdev/playlist-manager
Last synced: over 1 year ago
JSON representation
This is a C++ Program which manages a playlist of songs. The PlayList class manages a dynamically allocated array of song objects. The song class is provided for you in song.h and song.cpp, which should NOT be modified. Your playlist class will be implemented in two files proj5_playlist.h and proj5_playlist.cpp. The class will support two basic functions: Managing the playlist. This includes adding and deleting songs. Playing from the play list. This includes keeping track of which is the next song to be played. Obviously we will not actually be playing any music. “Playing” the song will consist of printing the name.
- Host: GitHub
- URL: https://github.com/ghulamghousdev/playlist-manager
- Owner: ghulamghousdev
- Created: 2019-06-25T20:50:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-08T19:21:49.000Z (over 6 years ago)
- Last Synced: 2024-10-11T19:16:57.441Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 17.8 MB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playlist-Manager
This is a C++ Program which manages a playlist of songs. The PlayList class manages a dynamically allocated array of song objects. The song class is provided for you in song.h and song.cpp, which should NOT be modified. Your playlist class will be implemented in two files proj5_playlist.h and proj5_playlist.cpp. The class will support two basic functions: Managing the playlist. This includes adding and deleting songs. Playing from the play list. This includes keeping track of which is the next song to be played. Obviously we will not actually be playing any music. “Playing” the song will consist of printing the name.