Implement hybrid webapplication installation
[platform/core/appfw/wgt-backend.git] / src / hybrid / step / step_parse.cc
1 // Copyright (c) 2015 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 "hybrid/step/step_parse.h"
6
7 namespace {
8
9 const char kResWgtPath[] = "res/wgt";
10
11 }
12
13 namespace hybrid {
14 namespace parse {
15
16 bool StepParse::LocateConfigFile() {
17   return Check(context_->unpacked_dir_path.get() / kResWgtPath);
18 }
19
20 }  // namespace parse
21 }  // namespace hybrid
22