Tizen 2.0 Release
[apps/osp/Phone.git] / src / PhnPhoneAppEntry.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (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
7 //
8 //     http://floralicense.org/license/
9 //
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.
15 //
16
17 /**
18  * @file    PhnPhoneAppEntry.cpp
19  * @brief   Phone Application Entry file
20  */
21 #include "PhnPhoneApp.h"
22
23 using namespace Tizen::Base;
24 using namespace Tizen::Base::Collection;
25
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif // __cplusplus
30
31 //
32 // The entry function of Tizen application called by the operating system.
33 //
34 _EXPORT_ int
35 OspMain(int argc, char* pArgv[])
36 {
37         AppLog("Application started.");
38         ArrayList args(SingleObjectDeleter);
39         args.Construct();
40         for (int i = 0; i < argc; i++)
41         {
42                           args.Add(new (std::nothrow) String(pArgv[i]));
43         }
44
45         result r = Tizen::App::UiApp::Execute(PhoneApp::CreateInstance, &args);
46         TryLog(r == E_SUCCESS, "[%s] Application execution failed", GetErrorMessage(r));
47         AppLog("Application finished.");
48
49         return static_cast<int>(r);
50 }
51 #ifdef __cplusplus
52 }
53 #endif // __cplusplus