* WIP-commit of the first parts of the package kit and the pkgman

(console-)tool


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40261 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe
2011-01-21 22:18:58 +00:00
parent 90a81ace91
commit 500bb6305c
33 changed files with 2236 additions and 2 deletions
+44
View File
@@ -0,0 +1,44 @@
/*
* 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_