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