styling: convert TAB to four SPACES

Signed-off-by: Kiveisha Yevgeniy <yevgeniy.kiveisha@intel.com>
This commit is contained in:
Kiveisha Yevgeniy
2014-06-03 09:12:47 +00:00
parent 0db7af89f9
commit 5b8922f7bf
20 changed files with 635 additions and 635 deletions

View File

@ -38,16 +38,16 @@ namespace upm {
class Buzzer {
public:
Buzzer (int pinNumber);
~Buzzer ();
int playSound (int note);
Buzzer (int pinNumber);
~Buzzer ();
int playSound (int note);
std::string name()
{
return m_name;
}
protected:
std::string m_name;
private:
maa_pwm_context m_pwm_context;
private:
maa_pwm_context m_pwm_context;
};
}