Add a plugin for app-defined loader
[platform/core/appfw/launchpad.git] / parser / loader_info.cc
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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 #include "loader_info.hh"
17
18 using namespace std;
19 namespace launchpad_parser_plugin {
20
21 LoaderInfo::LoaderInfo(std::string id) : id_(id), time_to_live_(0) {
22 }
23
24 string LoaderInfo::GetId() {
25   return id_;
26 }
27
28 int LoaderInfo::GetTimeToLive() {
29   return time_to_live_;
30 }
31
32 void LoaderInfo::SetTimeToLive(int time) {
33   time_to_live_ = time;
34 }
35
36 list<string> LoaderInfo::GetPreloadLib() {
37   return preload_lib_list_;
38 }
39
40 void LoaderInfo::AddPreloadLib(string lib_name) {
41   preload_lib_list_.push_back(lib_name);
42 }
43
44 }   // namspace launchpad_parser_plugin