1/*
2 * Copyright 2011-2015, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Oliver Tappe <zooey@hirschkaefer.de>
7 *		Rene Gollent <rene@gollent.com>
8 */
9
10
11#include <package/Job.h>
12
13
14namespace BPackageKit {
15
16
17BJob::BJob(const BContext& context, const BString& title)
18	:
19	BSupportKit::BJob(title),
20	fContext(context)
21{
22}
23
24
25BJob::~BJob()
26{
27}
28
29
30}	// namespace BPackageKit
31