Merge "BigInteger class implementation" into tizen
[platform/framework/native/appfw.git] / src / base / FBaseInteger.cpp
index 3bcf385..49d0276 100644 (file)
@@ -126,6 +126,12 @@ Integer::ToChar(void) const
        return static_cast< char >(value);
 }
 
+int8_t
+Integer::ToInt8(void) const
+{
+       return static_cast< int8_t >(value);
+}
+
 short
 Integer::ToShort(void) const
 {