// // 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 IDEInstaller.cpp * @brief This is the implementation file for %IDEInstaller class. */ #include "IDEInstaller.h" IDEInstaller::IDEInstaller(void) { } IDEInstaller::~IDEInstaller(void) { } InstallationStep IDEInstaller::GetNext(InstallationStep step) { return DirectoryInstaller::GetNext(step); } InstallerError IDEInstaller::OnInit(void) { return DirectoryInstaller::OnInit(); } InstallerError IDEInstaller::OnRegister(void) { return DirectoryInstaller::OnRegister(); } InstallerError IDEInstaller::OnEnd(void) { return DirectoryInstaller::OnEnd(); } InstallerError IDEInstaller::OnError(void) { AppLog("IDEInstaller::OnError()"); return DirectoryInstaller::OnError(); } InstallerError IDEInstaller::OnUserCancel(void) { AppLog("IDEInstaller::OnUserCancel()"); return DirectoryInstaller::OnUserCancel(); } InstallerError IDEInstaller::OnRollback(void) { AppLog("IDEInstaller::OnRollback()"); return DirectoryInstaller::OnRollback(); }