#ifndef CLASS_LIBUI
#define CLASS_LIBUI
//----------------------------------------
// 				class LibUI
//----------------------------------------
class LibUI : public UI
	{
	public:
		//Constructor/Destructor
		LibUI();
		~LibUI();
		//Menu Options
		static const char CATALOG_MENU = 'C';
		static const char PATRON_MENU = 'P';
		static const char TRANSACTION_MENU = 'T';
		static void mainMenu();
	private:
		Library *library;
	};
#endif
