mirror of
https://review.haiku-os.org/haiku
synced 2025-01-24 07:14:48 +01:00
43 lines
798 B
C
43 lines
798 B
C
|
/*
|
||
|
* Copyright 2011, Haiku, Inc.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _HAIKU__PACKAGE__ADD_REPOSITORY_REQUEST_H_
|
||
|
#define _HAIKU__PACKAGE__ADD_REPOSITORY_REQUEST_H_
|
||
|
|
||
|
|
||
|
#include <String.h>
|
||
|
|
||
|
#include <package/Context.h>
|
||
|
#include <package/Request.h>
|
||
|
|
||
|
|
||
|
namespace Haiku {
|
||
|
|
||
|
namespace Package {
|
||
|
|
||
|
|
||
|
class AddRepositoryRequest : public Request {
|
||
|
typedef Request inherited;
|
||
|
|
||
|
public:
|
||
|
AddRepositoryRequest(const Context& context,
|
||
|
const BString& repositoryURL,
|
||
|
bool asUserRepository);
|
||
|
virtual ~AddRepositoryRequest();
|
||
|
|
||
|
virtual status_t CreateJobsToRun(JobQueue& jobQueue);
|
||
|
|
||
|
private:
|
||
|
BString fRepositoryURL;
|
||
|
bool fAsUserRepository;
|
||
|
};
|
||
|
|
||
|
|
||
|
} // namespace Package
|
||
|
|
||
|
} // namespace Haiku
|
||
|
|
||
|
|
||
|
#endif // _HAIKU__PACKAGE__ADD_REPOSITORY_REQUEST_H_
|