Modify terminal interface 38/18738/1
authorWonkyu Kwon <wonkyu.kwon@samsung.com>
Wed, 16 Oct 2013 04:23:34 +0000 (13:23 +0900)
committerJi-hoon Jung <jh8801.jung@samsung.com>
Mon, 31 Mar 2014 06:00:58 +0000 (15:00 +0900)
 - implement open/close function

Change-Id: Ifb078b9ff9cb0f6644c8572b21abbdadcc4ba415
Signed-off-by: Ji-hoon Jung <jh8801.jung@samsung.com>
UICCTerminal.cpp
include/UICCTerminal.h

index 379f8295c3501e6480674779e14a03bacbcb327b..e00d446e06ced9f1892032273d14bfdb6006dcd7 100644 (file)
@@ -209,6 +209,17 @@ namespace smartcard_service_api
                _END();
        }
 
+       bool UICCTerminal::open()
+       {
+               /* no need to open */
+               return true;
+       }
+
+       void UICCTerminal::close()
+       {
+               /* no need to close */
+       }
+
        int UICCTerminal::transmitSync(const ByteArray &command,
                ByteArray &response)
        {
index b9d2c60a46476f8fa5115792251fc376ac9cf9ef..6309026546a91457c8745fd3a48ce91bc507d9a8 100644 (file)
@@ -57,6 +57,9 @@ namespace smartcard_service_api
                bool initialize();
                void finalize();
 
+               bool open();
+               void close();
+
                bool isSecureElementPresence() const;
 
                int transmitSync(const ByteArray &command, ByteArray &response);