From: Wonkyu Kwon Date: Wed, 16 Oct 2013 04:23:34 +0000 (+0900) Subject: Modify terminal interface X-Git-Tag: submit/tizen/20140408.090816~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=87e2da9d4e12e0f79c95774ec5b0ab2ba5d1c51e;p=platform%2Fcore%2Fconnectivity%2Fsmartcard-plugin-uicc.git Modify terminal interface - implement open/close function Change-Id: Ifb078b9ff9cb0f6644c8572b21abbdadcc4ba415 Signed-off-by: Ji-hoon Jung --- diff --git a/UICCTerminal.cpp b/UICCTerminal.cpp index 379f829..e00d446 100644 --- a/UICCTerminal.cpp +++ b/UICCTerminal.cpp @@ -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) { diff --git a/include/UICCTerminal.h b/include/UICCTerminal.h index b9d2c60..6309026 100644 --- a/include/UICCTerminal.h +++ b/include/UICCTerminal.h @@ -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);