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
2018-09-16 18:10:59 -04:00

28 lines
408 B
C++

#ifndef AUDIOINFORMATION_H
#define AUDIOINFORMATION_H
#include<string>
using std::string;
class AudioInformation
{
public:
AudioInformation();
unsigned short getVolume() const;
static string audioConfigPath;
private:
void stripInformation();
string audioInfoPath;
string currentVolumnPath;
unsigned short volume = 0;
unsigned short count = 0;
const unsigned short MAXCOUNTS = 3;
};
#endif