This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AudioControl/AudioInformation.h
T
2017-04-09 18:38:36 -05:00

20 lines
286 B
C++

#ifndef AUDIOINFORMATION_H
#define AUDIOINFORMATION_H
class AudioInformation
{
public:
AudioInformation();
unsigned short getVolume() const;
private:
void stripInformation();
unsigned short volume = 0;
unsigned short count = 0;
const unsigned short MAXCOUNTS = 3;
};
#endif