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