Move requestid to separate file 51/72851/4
authorZofia Abramowska <z.abramowska@samsung.com>
Thu, 2 Jun 2016 10:31:50 +0000 (12:31 +0200)
committerOskar Świtalski <o.switalski@samsung.com>
Tue, 7 Jun 2016 05:08:44 +0000 (07:08 +0200)
Change-Id: I23ad9c1d006b7a9116f4d841dd9048ada32a9fcf

src/agent/main/Request.h
src/common/types/RequestId.h [new file with mode: 0644]

index 28a6d38..95b8aac 100644 (file)
 #include <cstdlib>
 #include <vector>
 
-#include <cynara-agent.h>
 #include <cynara-plugin.h>
 
+#include <types/RequestId.h>
+
 namespace AskUser {
 
 namespace Agent {
@@ -37,8 +38,6 @@ typedef enum {
     RT_Close
 } RequestType;
 
-typedef cynara_agent_req_id RequestId;
-
 class Request {
 public:
     Request() = default;
diff --git a/src/common/types/RequestId.h b/src/common/types/RequestId.h
new file mode 100644 (file)
index 0000000..57f055a
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ *  Copyright (c) 2016 Samsung Electronics Co.
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License
+ */
+/**
+ * @file        RequestId.h
+ * @author      Zofia Abramowska <z.abramowska@samsung.com>
+ * @brief       RequestId typedef
+ */
+
+#pragma once
+
+#include <cstdint> // required before fix to cynara-agent.h is submited
+
+#include <cynara-agent.h>
+
+namespace AskUser {
+
+typedef cynara_agent_req_id RequestId;
+
+} // namespace AskUser