2 * Copyright 2017, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
6 * Brian Hill <supernova@tycho.email>
8 #ifndef _WORKING_LOOPER_H
9 #define _WORKING_LOOPER_H
15 #include "CheckAction.h"
16 #include "UpdateAction.h"
19 const uint32 kMsgStart
= 'iSTA';
22 class WorkingLooper
: public BLooper
{
24 WorkingLooper(update_type action
, bool verbose
);
26 void MessageReceived(BMessage
* message
);
29 UpdateAction
* fUpdateAction
;
30 CheckAction
* fCheckAction
;
31 update_type fActionRequested
;
37 #endif // _WORKING_LOOPER_H