Audacity 3.2.0
ICancellable.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: GPL-2.0-or-later
3 * SPDX-FileName: ICancellable.cpp
4 * SPDX-FileContributor: Dmitry Vedenko
5 */
6
7#pragma once
8
10{
11class CONCURRENCY_API ICancellable
12{
13public:
14 virtual ~ICancellable() = default;
15
16 virtual void Cancel() = 0;
17};
18} // namespace audacity::concurrency