aio: change c++ calls to camelCase
authorThomas Ingleby <thomas.c.ingleby@intel.com>
Mon, 22 Sep 2014 16:40:05 +0000 (17:40 +0100)
committerThomas Ingleby <thomas.c.ingleby@intel.com>
Mon, 22 Sep 2014 16:40:57 +0000 (17:40 +0100)
Signed-off-by: Thomas Ingleby <thomas.c.ingleby@intel.com>
api/mraa/aio.hpp

index 76c89c7..63a2cf6 100644 (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);
         }