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 12 namespace BPackageKit { 13 14 15 class BContext; 16 17 18 namespace BPrivate { 19 class JobQueue; 20 } 21 22 23 class BJob : public BSupportKit::BJob { 24 public: 25 BJob(const BContext& context, 26 const BString& title); 27 virtual ~BJob(); 28 29 protected: 30 const BContext& fContext; 31 }; 32 33 34 } // namespace BPackageKit 35 36 37 #endif // _PACKAGE__JOB_H_ 38