#ifndef SERL_LIBRARY_MANAGER_H
#define SERL_LIBRARY_MANAGER_H
/****************************************************************************
*
* $RCSfile: LibraryManager.h $
* $Revision: 1.1 $
* $Date: 1997/06/29 07:52:35 $
* $Author: ssolie $
*
*****************************************************************************
*
* Copyright (c) 1997 Software Evolution.  All Rights Reserved.
*
*****************************************************************************
*
* LibraryManager.h -- LibraryManager header file
*
* This file contains definitions required to use LibraryManager's.
*/

#include <exec/types.h>
#include <exec/libraries.h>
#include <utility/tagitem.h>


/*** Data types ***/
IMPORT struct LibraryManagerClass;
typedef struct LibraryManagerClass *LibraryManager;


/*** Function prototypes ***/
LibraryManager newLibraryManager(struct TagItem tags[]);
VOID deleteLibraryManager(LibraryManager this);
struct Library *openLibrary(LibraryManager this, STRPTR name, ULONG version);


#endif
