/* */ #ifndef _D_DEFAULT_SEGMENT_MAN_FACTORY_H_ #define _D_DEFAULT_SEGMENT_MAN_FACTORY_H_ #include "AbstractSegmentManFactory.h" class DefaultSegmentManFactory : public AbstractSegmentManFactory { public: DefaultSegmentManFactory(const Option* option):AbstractSegmentManFactory(option) {} virtual ~DefaultSegmentManFactory() {} virtual SegmentManHandle createNewInstance(); }; typedef SharedHandle DefaultSegmentManFactoryHandle; #endif // _D_DEFAULT_SEGMENT_MAN_FACTORY_H_