kodi
ThreadedAE.h
1 /*
2  * Copyright (C) 2010-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "AE.h"
12 #include "threads/IRunnable.h"
13 
14 class IThreadedAE : public IAE, public IRunnable
15 {
16 public:
17  virtual void Run () = 0;
18  virtual void Stop() = 0;
19 };
20 
Definition: ThreadedAE.h:14
Definition: IRunnable.h:11
IAE Interface.
Definition: AE.h:81