Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git] / headers / os / package / DropRepositoryRequest.h
blobe993ffb04d40498698fb3306152974fa07ca1688
1 /*
2 * Copyright 2011, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _PACKAGE__DROP_REPOSITORY_REQUEST_H_
6 #define _PACKAGE__DROP_REPOSITORY_REQUEST_H_
9 #include <String.h>
11 #include <package/Context.h>
12 #include <package/Request.h>
15 namespace BPackageKit {
18 class DropRepositoryRequest : public BRequest {
19 typedef BRequest inherited;
21 public:
22 DropRepositoryRequest(const BContext& context,
23 const BString& repositoryName);
24 virtual ~DropRepositoryRequest();
26 virtual status_t CreateInitialJobs();
28 private:
29 BString fRepositoryName;
33 } // namespace BPackageKit
36 #endif // _PACKAGE__ADD_REPOSITORY_REQUEST_H_