update the latest source
[framework/system/smartcard-service.git] / common / SessionHelper.cpp
1 /*
2 * Copyright (c) 2012 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18 /* standard library header */
19 #include <stdio.h>
20
21 /* SLP library header */
22
23 /* local header */
24 #include "Debug.h"
25 #include "SessionHelper.h"
26 #include "ReaderHelper.h"
27
28 namespace smartcard_service_api
29 {
30         SessionHelper::SessionHelper(ReaderHelper *reader)
31         {
32                 closed = true;
33
34                 if (reader == NULL)
35                         return;
36
37                 this->reader = reader;
38         }
39
40         SessionHelper::~SessionHelper()
41         {
42         }
43
44         ReaderHelper *SessionHelper::getReader()
45         {
46                 return reader;
47         }
48
49 //      ByteArray SessionHelper::getATR()
50 //      {
51 //              return atr;
52 //      }
53
54         bool SessionHelper::isClosed()
55         {
56                 return closed;
57         }
58
59 } /* namespace smartcard_service_api */