// Library.cpp: implementation of the CLibrary class. // ////////////////////////////////////////////////////////////////////// #include "Library.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CLibrary::CLibrary() { } CLibrary::CLibrary(int numberBooks) { //progress p_libBooks= new CBook[numberBooks]; nBooks=numberBooks; } CLibrary::~CLibrary() { }