From: Zofia Abramowska Date: Thu, 2 Jun 2016 10:31:50 +0000 (+0200) Subject: Move requestid to separate file X-Git-Tag: accepted/tizen/common/20160610.183543~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F51%2F72851%2F4;p=platform%2Fcore%2Fsecurity%2Faskuser.git Move requestid to separate file Change-Id: I23ad9c1d006b7a9116f4d841dd9048ada32a9fcf --- diff --git a/src/agent/main/Request.h b/src/agent/main/Request.h index 28a6d38..95b8aac 100644 --- a/src/agent/main/Request.h +++ b/src/agent/main/Request.h @@ -24,9 +24,10 @@ #include #include -#include #include +#include + 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 index 0000000..57f055a --- /dev/null +++ b/src/common/types/RequestId.h @@ -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 + * @brief RequestId typedef + */ + +#pragma once + +#include // required before fix to cynara-agent.h is submited + +#include + +namespace AskUser { + +typedef cynara_agent_req_id RequestId; + +} // namespace AskUser