/* */ #ifndef _D_DEFAULT_FILE_ALLOCATOR_H_ #define _D_DEFAULT_FILE_ALLOCATOR_H_ #include "FileAllocator.h" class DefaultFileAllocator : public FileAllocator { public: DefaultFileAllocator() {} virtual ~DefaultFileAllocator() {} virtual void allocate(int fd, int64_t totalLength); }; typedef SharedHandle DefaultFileAllocatorHandle; #endif // _D_DEFAULT_FILE_ALLOCATOR_H_