Using less bash scripting
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user