class librarybookLista: public linkedListType<library>//compile error here
{
public:
bool bookSearch(string bTitle);
//Function to search the list to see whether a
//particular title, specified by the parameter title,
//is in the store.
//Postcondition: Returns true if the title is found;
// otherwise, returns false.

bool isbookAvailable(string bTitle);


error from main program


--------------------------------------------------------------------------------------

ibrarybooklinked.h:12: error: call of overloaded âlinkedListType()â is ambiguous
linkedlist.h:133: note: candidates are: linkedListType<Type>::linkedListType() [with Type = library]
linkedlist.h:26: note: linkedListType<Type>::linkedListType(const Type&) [with Type = library]
Pruebalibrarybooklinked.cpp: In function âint main()â: