#ifndef CDORGANIZER_H #define CDORGANIZER_H #include "musiccd.h" #include "singlylinkednode.h" #include "doublylinkednode.h" class cdorganizer{ private: singlylinkednode * headptr_ListByArtist ; doublylinkednode * headptr_ListByYear ; public: cdorganizer(void) ; ~cdorganizer(void) ; bool IsEmpty(void) const; bool Exists(musiccd) const; bool AddCD(musiccd) ; bool RemoveCD(musiccd) ; void PrintCDsByArtist(void) const; void PrintCDsByYearASC(void) const; void PrintCDsByYearDESC(void) const; }; #endif