Private
Public Access
2
0

aio: change c++ calls to camelCase

Signed-off-by: Thomas Ingleby <thomas.c.ingleby@intel.com>
This commit is contained in:
Thomas Ingleby
2014-09-22 17:40:05 +01:00
parent e82a76593d
commit 0a9bfa365f

View File

@@ -67,7 +67,7 @@ class Aio {
* @param bits the bits the return from read should be i.e 10
* @return mraa result type
*/
mraa_result_t set_bit(int bits) {
mraa_result_t setBit(int bits) {
return mraa_aio_set_bit(m_aio, bits);
}
/**
@@ -75,7 +75,7 @@ class Aio {
*
* @return bit value mraa is set return from the read function
*/
int get_bit() {
int getBit() {
return mraa_aio_get_bit(m_aio);
}