<package/Request.h>: Don't leak JobQueue into public namespace

This commit is contained in:
Ingo Weinhold
2013-09-10 19:14:17 +02:00
parent cf3bb0d753
commit 43bd5a49c7
2 changed files with 4 additions and 2 deletions
+1 -2
View File
@@ -18,7 +18,6 @@ class BContext;
namespace BPrivate {
class JobQueue;
}
using BPrivate::JobQueue;
class BRequest : protected BJobStateListener {
@@ -41,7 +40,7 @@ protected:
protected:
status_t fInitStatus;
JobQueue* fJobQueue;
BPrivate::JobQueue* fJobQueue;
};
+3
View File
@@ -18,6 +18,9 @@
namespace BPackageKit {
using BPrivate::JobQueue;
BRequest::BRequest(const BContext& context)
:
fContext(context),