public class SongCollection
{
	private int songCount;

	
	public SongCollection()
	{
		songCount = 0;
	}
	
	
	public int size()
	{
		return songCount;
	}


	public void add(Song songToAdd)
	{
		songCount++;
	}
}
