[BasicApp] Change license statements
[apps/native/sample/BasicApp.git] / project / src / BasicAppEntry.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 /**
18  * This file contains the Tizen application entry point.
19  */
20
21 #include <new>
22
23 #include "BasicApp.h"
24
25 using namespace Tizen::Base;
26 using namespace Tizen::Base::Collection;
27
28 #ifdef __cplusplus
29 extern "C"
30 {
31 #endif // __cplusplus
32
33 _EXPORT_ int OspMain(int argc, char* pArgv[]);
34
35 /**
36  * The entry function of Tizen application called by the operating system.
37  */
38 int
39 OspMain(int argc, char* pArgv[])
40 {
41         AppLog("Application started.");
42         ArrayList args;
43         args.Construct();
44         for (int i = 0; i < argc; i++)
45         {
46                 args.Add(*(new (std::nothrow) String(pArgv[i])));
47         }
48
49         result r = Tizen::App::Application::Execute(BasicApp::CreateInstance, &args);
50         
51         TryLog(r == E_SUCCESS, "[%s] Application execution failed", GetErrorMessage(r));
52
53         args.RemoveAll(true);
54         AppLog("Application finished.");
55
56         return static_cast<int>(r);
57 }
58 #ifdef __cplusplus
59 }
60 #endif // __cplusplus