Revert refactor patch and its release patch
[platform/core/appfw/pkgmgr-info.git] / src / server / request_handler / abstract_request_handler.cc
1 // Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved
2 // Use of this source code is governed by an apache-2.0 license that can be
3 // found in the LICENSE file.
4
5 #include "abstract_request_handler.hh"
6
7 #include <string>
8
9 #include "pkgmgrinfo_debug.h"
10
11 namespace pkgmgr_server {
12 namespace request_handler {
13
14 void AbstractRequestHandler::SetPID(pid_t pid) {
15   pid_ = pid;
16 }
17
18 pid_t AbstractRequestHandler::GetPID() {
19   return pid_;
20 }
21
22 }  // namespace request_handler
23 }  // namespace pkgmgr_server