BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / softwareupdater / CheckAction.h
blob2b934cf65da1f352614758b82bebfff7563eb414
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 CHECK_ACTION_H
9 #define CHECK_ACTION_H
12 #include "CheckManager.h"
15 class CheckAction {
16 public:
17 CheckAction(bool verbose);
18 ~CheckAction();
19 status_t Perform();
21 private:
22 CheckManager* fCheckManager;
26 #endif // CHECK_ACTION_H