/* * Copyright 2011-2015, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. * * Authors: * Oliver Tappe * Rene Gollent */ #include namespace BPackageKit { BJob::BJob(const BContext& context, const BString& title) : BSupportKit::BJob(title), fContext(context) { } BJob::~BJob() { } } // namespace BPackageKit