/* * Copyright 2013 Haiku Inc. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef _B_FILE_REQUEST_H_ #define _B_FILE_REQUEST_H_ #include #include class BFileRequest : public BUrlRequest { public: BFileRequest(const BUrl& url, BUrlProtocolListener* listener = NULL, BUrlContext* context = NULL); virtual ~BFileRequest(); void SetDisableListener(bool disable); private: status_t _ProtocolLoop(); }; #endif // _B_FILE_REQUEST_H_