From 0a9bfa365f5d2636ee45097155d813c3820f1570 Mon Sep 17 00:00:00 2001 From: Thomas Ingleby Date: Mon, 22 Sep 2014 17:40:05 +0100 Subject: [PATCH] aio: change c++ calls to camelCase Signed-off-by: Thomas Ingleby --- api/mraa/aio.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/mraa/aio.hpp b/api/mraa/aio.hpp index 76c89c7..63a2cf6 100644 --- a/api/mraa/aio.hpp +++ b/api/mraa/aio.hpp @@ -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); } -- 2.7.4