1 /* 2 * Copyright 2017, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Brian Hill <supernova@tycho.email> 7 */ 8 #ifndef CHECK_ACTION_H 9 #define CHECK_ACTION_H 10 11 12 #include "CheckManager.h" 13 14 15 class CheckAction { 16 public: 17 CheckAction(bool verbose); 18 ~CheckAction(); 19 status_t Perform(); 20 21 private: 22 CheckManager* fCheckManager; 23 }; 24 25 26 #endif // CHECK_ACTION_H 27