SoundCardImpl

class SoundCardImpl(val driverVersion: String, val name: String, val codec: String) : SoundCard

Implementation of the SoundCard interface. This class provides the details of a sound card, including the driver version, name, and codec.

Author

N7ghtm4r3

Parameters

driverVersion

The version of the sound card's driver.

name

The name of the sound card (e.g., "Realtek High Definition Audio").

codec

The codec used by the sound card (e.g., "Realtek ALC1220").

See also

Constructors

Link copied to clipboard
constructor(driverVersion: String, name: String, codec: String)

Properties

Link copied to clipboard
open override val codec: String
Link copied to clipboard
open override val driverVersion: String
Link copied to clipboard
open override val name: String