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