// // Open Service Platform // Copyright (c) 2012 Samsung Electronics Co., Ltd. // // 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 ManifestParser.cpp * @brief This is the implementation file for %ManifestParser class. */ #include #include #include #include "ManifestParser.h" #include "InstallerUtil.h" using namespace Tizen::Base; using namespace Tizen::Base::Collection; using namespace Tizen::Base::Utility; using namespace Tizen::Io; using namespace Tizen::System; ManifestParser::ManifestParser(void) :__pManifestHandler(null) { } ManifestParser::~ManifestParser(void) { } bool ManifestParser::Construct(ManifestHandler* pManifestHandler) { __pManifestHandler = pManifestHandler; return true; } ManifestHandler* ManifestParser::GetHandler(void) { return __pManifestHandler; } bool ManifestParser::OnStartElement(const char *pName) { return true; } bool ManifestParser::OnEndElement(const char *pName) { return true; } bool ManifestParser::OnCharacters(const char *pCharacters) { return true; }