haiku/headers/os/package/Context.h
Murai Takashi 3bee8ef61d Package Kit: Fix -Wmismatched-tags
Replace class with struct, since BJobStateListener is previously declared
as a struct in Job.h
Pointed by clang  [-Wmismatched-tags]

Change-Id: I75293b48bcb521d25e98702d1fc1e0ab1008d504
Reviewed-on: https://review.haiku-os.org/482
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2018-08-25 18:53:32 +00:00

71 lines
1.4 KiB
C++

/*
* Copyright 2011-2015, Haiku, Inc.
* Distributed under the terms of the MIT License.
*/
#ifndef _PACKAGE__CONTEXT_H_
#define _PACKAGE__CONTEXT_H_
#include <Entry.h>
#include <String.h>
namespace BSupportKit {
struct BJobStateListener;
}
namespace BPackageKit {
namespace BPrivate {
class TempfileManager;
}
struct BDecisionProvider {
virtual ~BDecisionProvider();
virtual bool YesNoDecisionNeeded(const BString& description,
const BString& question,
const BString& yes, const BString& no,
const BString& defaultChoice);
// virtual bool ActionsAcceptanceDecisionNeeded(
// const BString& description,
// const BString& question) = 0;
// virtual int32 ChoiceDecisionNeeded(
// const BString& question) = 0;
};
class BContext {
public:
BContext(BDecisionProvider& decisionProvider,
BSupportKit::BJobStateListener&
jobStateListener);
~BContext();
status_t InitCheck() const;
status_t GetNewTempfile(const BString& baseName,
BEntry* entry) const;
BDecisionProvider& DecisionProvider() const;
BSupportKit::BJobStateListener& JobStateListener() const;
private:
status_t _Initialize();
BDecisionProvider& fDecisionProvider;
BSupportKit::BJobStateListener& fJobStateListener;
status_t fInitStatus;
mutable BPrivate::TempfileManager* fTempfileManager;
};
} // namespace BPackageKit
#endif // _PACKAGE__CONTEXT_H_