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
8class Stoppable {
9public:
10	virtual	bool				WasStopped() = 0;
11};
12
13#endif // STOPPABLE_H