1/*
2 * Copyright 2011-2015, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _PACKAGE__JOB_H_
6#define _PACKAGE__JOB_H_
7
8
9#include <support/Job.h>
10
11
12namespace BPackageKit {
13
14
15class BContext;
16
17
18namespace BPrivate {
19	class JobQueue;
20}
21
22
23class BJob : public BSupportKit::BJob {
24public:
25								BJob(const BContext& context,
26									const BString& title);
27	virtual						~BJob();
28
29protected:
30			const BContext&		fContext;
31};
32
33
34}	// namespace BPackageKit
35
36
37#endif // _PACKAGE__JOB_H_
38