// ********************************************************************** // // Copyright (c) 2002 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_PATCH_FILE_DESC_FACTORY_H #define ICE_PATCH_FILE_DESC_FACTORY_H #include #include namespace IcePatch { class ICE_PATCH_API FileDescFactory : public Ice::ObjectFactory { public: Ice::ObjectPtr create(const std::string&); void destroy(); }; } #endif