Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Amplifier.h
- Committer:
- leysenkobe
- Date:
- 2014-03-19
- Revision:
- 0:88f8e80dc5fd
File content as of revision 0:88f8e80dc5fd:
#ifndef AMPLIFIER_H #define AMPLIFIER_H class Amplifier { private: bool enable; int amplification; public: Amplifier(void); ~Amplifier(void); //GETTERS bool Enabled(void); int getAmplification(void); //SETTERS void setAmplification(int newAmplification); void Enable(void); void Disable(void); }; #endif