// ********************************************************************** // // Copyright (c) 2001 // ZeroC, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef BOOK_FACTORY_H #define BOOK_FACTORY_H #include class BookFactory : virtual public Ice::ObjectFactory { public: BookFactory(const LibraryIPtr&); // // Operations from ObjectFactory // virtual Ice::ObjectPtr create(const std::string&); virtual void destroy(); private: LibraryIPtr _library; }; #endif