#ifndef SINGLYLINKEDNODE_H #define SINGLYLINKEDNODE_H #include "musiccd.h" struct singlylinkednode{ musiccd * data ; singlylinkednode * next ; }; #endif