#ifndef LIBRARY_CLASS_
#define LIBRARY_CLASS_
class Library : public Database
	{
	private:
		//member data
		PatronDB 		*patronDB;
		TransactionDB	*transactionDB;
		Catalog  		*catalogDB;
		//member functions
		void displayCatalog(list<Library_Item*> list);
	public:
		//Constructor/Destructor
		Library();
		~Library();
		//member functions
		void process();
	};
#endif
