xref: /haiku/src/apps/haikudepot/util/Stoppable.h (revision c237c4ce593ee823d9867fd997e51e4c447f5623)
1 /*
2  * Copyright 2017, Andrew Lindesay <apl@lindesay.co.nz>.
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 #ifndef STOPPABLE_H
6 #define STOPPABLE_H
7 
8 class Stoppable {
9 public:
10 	virtual	bool				WasStopped() = 0;
11 };
12 
13 #endif // STOPPABLE_H