BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / softwareupdater / UpdateAction.h
blob101b299a47330892e3b28351913c74a8a08226a8
1 /*
2 * Copyright 2017, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Brian Hill <supernova@tycho.email>
7 */
8 #ifndef UPDATE_ACTION_H
9 #define UPDATE_ACTION_H
12 #include "UpdateManager.h"
15 class UpdateAction {
16 public:
17 UpdateAction(bool verbose);
18 ~UpdateAction();
19 status_t Perform(update_type action_request);
21 private:
22 UpdateManager* fUpdateManager;
23 bool fVerbose;
27 #endif // UPDATE_ACTION_H