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/Volume.h
T
amazing-username 2b3718f5fd Functioning
2017-04-09 19:10:28 -05:00

36 lines
427 B
C++

#ifndef VOLUME_H
#define VOLUME_H
#include<string>
class Volume
{
public:
Volume()
{
}
void setVolume(const unsigned short& volume)
{
this->volume = volume;
}
unsigned short getVolume() const
{
return volume;
}
void updateTheCurrentVolume();
virtual void updateVolume() = 0;
virtual void newVolume() = 0;
protected:
unsigned short volume;
const unsigned short AFFECTAMOUNT = 20;
private:
};
#endif