Applied latest source code
[apps/native/preloaded/Clock.git] / src / ClkClockEntry.cpp
1 //
2 // Tizen Native SDK
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
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
8 //
9 //     http://floralicense.org/license/
10 //
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.
16 //
17
18 /**
19  * @file        ClkClockEntry.cpp
20  * @brief       This file contains the Tizen application entry point.
21  */
22
23 #include "ClkClockApp.h"
24
25 using namespace Tizen::App;
26 using namespace Tizen::Base;
27 using namespace Tizen::Base::Collection;
28
29 #ifdef __cplusplus
30 extern "C"
31 {
32 #endif // __cplusplus
33
34 _EXPORT_ int OspMain(int argc, char *pArgv[]);
35
36 /**
37  * The entry function of Tizen application called by the operating system.
38  */
39 int
40 OspMain(int argc, char *pArgv[])
41 {
42         result r = E_SUCCESS;
43
44         ArrayList* pArgs = new (std::nothrow) ArrayList();
45         pArgs->Construct();
46
47         for (int i = 0; i < argc; i++)
48         {
49                 pArgs->Add(*(new (std::nothrow) String(pArgv[i])));
50         }
51
52         r = UiApp::Execute(ClockApp::CreateInstance, pArgs);
53
54         if (IsFailed(r))
55         {
56                 AppLogException("Application execution failed-[%s].", GetErrorMessage(r));
57                 r &= 0x0000FFFF;
58         }
59
60         pArgs->RemoveAll(true);
61         delete pArgs;
62
63         return static_cast<int>(r);
64 }
65 #ifdef __cplusplus
66 }
67 #endif // __cplusplus