1 /* 2 * Copyright 2021, Andrew Lindesay <apl@lindesay.co.nz>. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 #ifndef SHUTTING_DOWN_WINDOW_H 6 #define SHUTTING_DOWN_WINDOW_H 7 8 #include <Locker.h> 9 #include <Messenger.h> 10 #include <Window.h> 11 12 #include "BarberPole.h" 13 #include "HaikuDepotConstants.h" 14 #include "UserDetail.h" 15 #include "UserUsageConditions.h" 16 17 18 class BButton; 19 class BCheckBox; 20 class Model; 21 22 23 class ShuttingDownWindow : public BWindow { 24 public: 25 ShuttingDownWindow(BWindow* parent); 26 virtual ~ShuttingDownWindow(); 27 }; 28 29 30 #endif // SHUTTING_DOWN_WINDOW_H 31