Private
Public Access
2
0

mraa: Remove trailing whitespace/tabs from various parts

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2015-12-21 15:27:15 +00:00
parent 79609ba359
commit 8862ebd9f2
5 changed files with 31 additions and 29 deletions

View File

@@ -43,13 +43,13 @@ struct IioEventData
int diff;
};
class IioHandler
class IioHandler
{
public:
virtual void onIioEvent(const IioEventData& eventData) = 0;
};
/**
* @brief API to Industrial IO
*
@@ -108,9 +108,9 @@ class Iio
mraa_iio_close(m_iio);
}
/**
* Get device name
* Get device name
*
* @returns The device name
*/
@@ -143,7 +143,7 @@ class Iio
}
/**
* Read a float value from specified attribute.
* Read a float value from specified attribute.
*
* @param attributeName attribute mame
*
@@ -165,7 +165,7 @@ class Iio
}
/**
* Write an int value to specified attribute.
* Write an int value to specified attribute.
*
* @param attributeName attribute mame
* @param value int value
@@ -185,7 +185,7 @@ class Iio
}
/**
* Write a float value to specified attribute.
* Write a float value to specified attribute.
*
* @param attributeName attribute mame
* @param value float value
@@ -205,7 +205,7 @@ class Iio
}
/**
* Register event handler.
* Register event handler.
*
* @param handler handler class that implements IioHandler
*
@@ -237,7 +237,7 @@ class Iio
eventData.diff = different;
handler->onIioEvent(eventData);
}
}
}
mraa_iio_context m_iio;
};