mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 22:05:27 +01:00
45 lines
747 B
C
45 lines
747 B
C
|
/*
|
||
|
* Copyright 2011, Haiku, Inc.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _HAIKU__PACKAGE__FETCH_FILE_JOB_H_
|
||
|
#define _HAIKU__PACKAGE__FETCH_FILE_JOB_H_
|
||
|
|
||
|
|
||
|
#include <Entry.h>
|
||
|
#include <String.h>
|
||
|
|
||
|
#include <package/Job.h>
|
||
|
|
||
|
|
||
|
namespace Haiku {
|
||
|
|
||
|
namespace Package {
|
||
|
|
||
|
|
||
|
class FetchFileJob : public Job {
|
||
|
typedef Job inherited;
|
||
|
|
||
|
public:
|
||
|
FetchFileJob(const BString& title,
|
||
|
const BString& fileURL,
|
||
|
const BEntry& targetEntry);
|
||
|
virtual ~FetchFileJob();
|
||
|
|
||
|
protected:
|
||
|
virtual status_t Execute();
|
||
|
virtual void Cleanup(status_t jobResult);
|
||
|
|
||
|
private:
|
||
|
BString fFileURL;
|
||
|
BEntry fTargetEntry;
|
||
|
};
|
||
|
|
||
|
|
||
|
} // namespace Package
|
||
|
|
||
|
} // namespace Haiku
|
||
|
|
||
|
|
||
|
#endif // _HAIKU__PACKAGE__FETCH_FILE_JOB_H_
|