diff options
author | Youngjae Shin <yj99.shin@samsung.com> | 2013-09-26 18:53:44 +0900 |
---|---|---|
committer | Youngjae Shin <yj99.shin@samsung.com> | 2013-09-26 18:53:44 +0900 |
commit | 202c3af0c941f34671ca7827ca057fe6e139424d (patch) | |
tree | 563af763ebe0c31886660288ff7de1b169ecbf74 | |
parent | f35078c15a82ce211bfbcbbadf2e856e3db125a9 (diff) | |
download | smartcard-service-accepted/tizen/ivi/stable.tar.gz smartcard-service-accepted/tizen/ivi/stable.tar.bz2 smartcard-service-accepted/tizen/ivi/stable.zip |
fix header dependencysubmit/tizen_ivi_stable/20131119.035333submit/tizen_ivi_release/20140312.071133submit/tizen/20140312.070657submit/tizen/20140227.200600submit/tizen/20130926.095810accepted/tizen_ivi_stable/20131119.040335accepted/tizen/mobile/20140303.023247accepted/tizen/ivi/release/20140312.124240accepted/tizen/ivi/panda/20140312.104117accepted/tizen/ivi/20140227.222159accepted/tizen/generic/20140312.093133accepted/tizen/generic/20140228.075931accepted/tizen/20130926.204307accepted/tizen/20130926.191009accepted/tizen/20130926.103420tizen_ivi_releaseaccepted/tizen_ivi_releaseaccepted/tizen/ivi/stable
Change-Id: I190546e34fbc788165980a3023a66052cd2acbbb
-rw-r--r-- | client/include/ClientChannel.h | 1 | ||||
-rw-r--r-- | client/include/Reader.h | 1 | ||||
-rw-r--r-- | client/include/SEService.h | 1 | ||||
-rw-r--r-- | client/include/SEServiceListener.h | 2 | ||||
-rw-r--r-- | client/include/Session.h | 1 | ||||
-rw-r--r-- | common/include/Channel.h | 1 | ||||
-rw-r--r-- | common/include/FileObject.h | 1 | ||||
-rw-r--r-- | common/include/GDBusHelper.h | 1 | ||||
-rw-r--r-- | common/include/GPACE.h | 1 | ||||
-rw-r--r-- | common/include/Lock.h | 2 | ||||
-rw-r--r-- | common/include/PKCS15.h | 1 | ||||
-rw-r--r-- | common/include/ReaderHelper.h | 1 | ||||
-rw-r--r-- | common/include/SEServiceHelper.h | 1 | ||||
-rw-r--r-- | common/include/Serializable.h | 1 | ||||
-rw-r--r-- | common/include/SessionHelper.h | 1 | ||||
-rw-r--r-- | common/include/SignatureHelper.h | 2 | ||||
-rw-r--r-- | common/include/Terminal.h | 1 |
17 files changed, 19 insertions, 1 deletions
diff --git a/client/include/ClientChannel.h b/client/include/ClientChannel.h index bd0fcf6..9b94394 100644 --- a/client/include/ClientChannel.h +++ b/client/include/ClientChannel.h @@ -21,6 +21,7 @@ #include <gio/gio.h> #endif +#include "Debug.h" #include "smartcard-types.h" #ifdef __cplusplus #include "Channel.h" diff --git a/client/include/Reader.h b/client/include/Reader.h index f913446..f2f0103 100644 --- a/client/include/Reader.h +++ b/client/include/Reader.h @@ -22,6 +22,7 @@ #include <gio/gio.h> #endif +#include "Debug.h" #include "smartcard-types.h" #ifdef __cplusplus #include "ReaderHelper.h" diff --git a/client/include/SEService.h b/client/include/SEService.h index 4ecda27..ade4068 100644 --- a/client/include/SEService.h +++ b/client/include/SEService.h @@ -22,6 +22,7 @@ #include <gio/gio.h> #endif +#include "Debug.h" #include "smartcard-types.h" #ifdef __cplusplus #include "SEServiceListener.h" diff --git a/client/include/SEServiceListener.h b/client/include/SEServiceListener.h index 21c53f4..886b918 100644 --- a/client/include/SEServiceListener.h +++ b/client/include/SEServiceListener.h @@ -17,6 +17,8 @@ #ifndef SESERVICELISTENER_H_ #define SESERVICELISTENER_H_ +#include "Debug.h" + namespace smartcard_service_api { class SEServiceHelper; diff --git a/client/include/Session.h b/client/include/Session.h index 0117d7c..5eff455 100644 --- a/client/include/Session.h +++ b/client/include/Session.h @@ -21,6 +21,7 @@ #include <gio/gio.h> #endif +#include "Debug.h" #include "smartcard-types.h" #ifdef __cplusplus #include "SessionHelper.h" diff --git a/common/include/Channel.h b/common/include/Channel.h index 102606c..da0b472 100644 --- a/common/include/Channel.h +++ b/common/include/Channel.h @@ -17,6 +17,7 @@ #ifndef CHANNEL_H_ #define CHANNEL_H_ +#include "Debug.h" #include "Synchronous.h" #include "ByteArray.h" #include "Exception.h" diff --git a/common/include/FileObject.h b/common/include/FileObject.h index cf6be8c..3f879bb 100644 --- a/common/include/FileObject.h +++ b/common/include/FileObject.h @@ -19,6 +19,7 @@ #include <vector> +#include "Debug.h" #include "ProviderHelper.h" #include "ByteArray.h" #include "FCI.h" diff --git a/common/include/GDBusHelper.h b/common/include/GDBusHelper.h index eae14dd..73edb10 100644 --- a/common/include/GDBusHelper.h +++ b/common/include/GDBusHelper.h @@ -19,6 +19,7 @@ #include <glib.h> +#include "Debug.h" #include "ByteArray.h" namespace smartcard_service_api diff --git a/common/include/GPACE.h b/common/include/GPACE.h index 128d55e..c69f59f 100644 --- a/common/include/GPACE.h +++ b/common/include/GPACE.h @@ -17,6 +17,7 @@ #ifndef GPACE_H_ #define GPACE_H_ +#include "Debug.h" #include "smartcard-types.h" #ifdef __cplusplus #include "AccessControlList.h" diff --git a/common/include/Lock.h b/common/include/Lock.h index 19974d9..0339d08 100644 --- a/common/include/Lock.h +++ b/common/include/Lock.h @@ -19,6 +19,8 @@ #include <pthread.h> +#include "Debug.h" + namespace smartcard_service_api { class EXPORT Lock diff --git a/common/include/PKCS15.h b/common/include/PKCS15.h index d0faed4..e7bbb7c 100644 --- a/common/include/PKCS15.h +++ b/common/include/PKCS15.h @@ -19,6 +19,7 @@ #include <map> +#include "Debug.h" #include "PKCS15Object.h" #include "PKCS15ODF.h" diff --git a/common/include/ReaderHelper.h b/common/include/ReaderHelper.h index a89d72d..e3c0b8d 100644 --- a/common/include/ReaderHelper.h +++ b/common/include/ReaderHelper.h @@ -20,6 +20,7 @@ #include <vector> #include <string> +#include "Debug.h" #include "Synchronous.h" #include "SessionHelper.h" diff --git a/common/include/SEServiceHelper.h b/common/include/SEServiceHelper.h index 3c57b41..999c293 100644 --- a/common/include/SEServiceHelper.h +++ b/common/include/SEServiceHelper.h @@ -19,6 +19,7 @@ #include <vector> +#include "Debug.h" #include "Synchronous.h" #include "ReaderHelper.h" diff --git a/common/include/Serializable.h b/common/include/Serializable.h index aaf9b75..98ada48 100644 --- a/common/include/Serializable.h +++ b/common/include/Serializable.h @@ -17,6 +17,7 @@ #ifndef SERIALIZABLE_H_ #define SERIALIZABLE_H_ +#include "Debug.h" #include "ByteArray.h" namespace smartcard_service_api diff --git a/common/include/SessionHelper.h b/common/include/SessionHelper.h index b1a33c1..513790e 100644 --- a/common/include/SessionHelper.h +++ b/common/include/SessionHelper.h @@ -19,6 +19,7 @@ #include <vector> +#include "Debug.h" #include "Synchronous.h" #include "ByteArray.h" #include "Channel.h" diff --git a/common/include/SignatureHelper.h b/common/include/SignatureHelper.h index 9644d9b..1da4078 100644 --- a/common/include/SignatureHelper.h +++ b/common/include/SignatureHelper.h @@ -22,8 +22,8 @@ #include "ByteArray.h" #endif /* __cplusplus */ -#include "smartcard-types.h" #include "Debug.h" +#include "smartcard-types.h" #ifdef __cplusplus using namespace std; diff --git a/common/include/Terminal.h b/common/include/Terminal.h index f55cbb7..1b7d7b3 100644 --- a/common/include/Terminal.h +++ b/common/include/Terminal.h @@ -17,6 +17,7 @@ #ifndef TERMINAL_H_ #define TERMINAL_H_ +#include "Debug.h" #include "ByteArray.h" #include "Synchronous.h" |