2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 // Licensed under the Flora License, Version 1.1 (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
8 // http://floralicense.org/license/
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.
18 * This file contains the Tizen application entry point.
25 using namespace Tizen::Base;
26 using namespace Tizen::Base::Collection;
33 _EXPORT_ int OspMain(int argc, char* pArgv[]);
36 * The entry function of Tizen application called by the operating system.
39 OspMain(int argc, char* pArgv[])
41 AppLog("Application started.");
44 for (int i = 0; i < argc; i++)
46 args.Add(*(new (std::nothrow) String(pArgv[i])));
49 result r = Tizen::App::Application::Execute(BasicApp::CreateInstance, &args);
51 TryLog(r == E_SUCCESS, "[%s] Application execution failed", GetErrorMessage(r));
54 AppLog("Application finished.");
56 return static_cast<int>(r);