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 14 namespace BPackageKit { 15 16 17 BJob::BJob(const BContext& context, const BString& title) 18 : 19 BSupportKit::BJob(title), 20 fContext(context) 21 { 22 } 23 24 25 BJob::~BJob() 26 { 27 } 28 29 30 } // namespace BPackageKit 31