3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 // Licensed under the Flora License, Version 1.1 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://floralicense.org/license/
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
19 * This file contains the Tizen application entry point.
21 #include "IntInternetApp.h"
23 using namespace Tizen::Base;
24 using namespace Tizen::Base::Collection;
31 _EXPORT_ int OspMain(int argc, char* pArgv[]);
33 extern void start_profile(void);
34 extern void end_profile(void);
36 #define start_profile()
41 * The entry function of Tizen application called by the operating system.
44 OspMain(int argc, char* pArgv[])
48 AppLogDebug("Application started.");
49 ArrayList* pArgs = new(std::nothrow) ArrayList();
51 for (int i = 0; i < argc; i++)
52 pArgs->Add(*(new(std::nothrow) String(pArgv[i])));
55 r = Tizen::App::UiApp::Execute(InternetApp::CreateInstance, pArgs);
58 AppLogException("Application execution failed-[%s].", GetErrorMessage(r));
63 pArgs->RemoveAll(true);
66 AppLogDebug("Application finished.");
68 return static_cast< int >(r);