mirror of
https://github.com/danog/libtgvoip.git
synced 2024-11-26 20:24:38 +01:00
22 lines
255 B
C
22 lines
255 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
namespace tgvoip
|
||
|
{
|
||
|
|
||
|
class AudioDevice
|
||
|
{
|
||
|
public:
|
||
|
std::string id;
|
||
|
std::string displayName;
|
||
|
};
|
||
|
|
||
|
class AudioOutputDevice : public AudioDevice
|
||
|
{
|
||
|
};
|
||
|
|
||
|
class AudioInputDevice : public AudioDevice
|
||
|
{
|
||
|
};
|
||
|
|
||
|
} // namespace tgvoip
|