#ifndef __LIBRARY_HPP #define __LIBRARY_HPP #include "typedirectory.hpp" class String; class aLibrary : public aTypeDirectory { String *libname; protected: virtual int compare(const aType *e1, const aType *e2); public: aLibrary(const char* name); aLibrary(const String& name); virtual ~aLibrary(); const String* getName() const; void changeName(const char *newname); void changeName(const String& newname); }; #endif