Make UEFI boot-platform build again
[haiku.git] / headers / private / package / RemoveRepositoryJob.h
blob8e9618fc2665d4278f87ca3860b472e79138f908
1 /*
2 * Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _PACKAGE__PRIVATE__REMOVE_REPOSITORY_JOB_H_
6 #define _PACKAGE__PRIVATE__REMOVE_REPOSITORY_JOB_H_
9 #include <String.h>
11 #include <package/Job.h>
14 namespace BPackageKit {
16 namespace BPrivate {
19 class RemoveRepositoryJob : public BJob {
20 typedef BJob inherited;
22 public:
23 RemoveRepositoryJob(
24 const BContext& context,
25 const BString& title,
26 const BString& repositoryName);
27 virtual ~RemoveRepositoryJob();
29 protected:
30 virtual status_t Execute();
32 private:
33 BString fRepositoryName;
37 } // namespace BPrivate
39 } // namespace BPackageKit
42 #endif // _PACKAGE__PRIVATE__REMOVE_REPOSITORY_JOB_H_