a85622d0842ddad0deb1b5e18635a1c41c61851c
[platform/core/uifw/dali-adaptor.git] / build / tizen / adaptor / linker-test.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
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 #include <dali/public-api/dali-core.h>
19
20 #include <dali/public-api/adaptor-framework/application.h>
21 #include <dali/integration-api/adaptor.h>
22 #include <dali/integration-api/render-surface.h>
23 #include <dali/devel-api/adaptor-framework/orientation.h>
24 #include <dali/public-api/adaptor-framework/timer.h>
25 #include <iostream>
26
27 using namespace Dali;
28
29 /*****************************************************************************
30  * Test to see if the dali-adaptor is linking correctly.
31  */
32
33 class LinkerApp : public ConnectionTracker
34 {
35 public:
36   LinkerApp(Application &app)
37   {
38     app.InitSignal().Connect(this, &LinkerApp::Create);
39   }
40
41 public:
42
43   void Create(Application& app)
44   {
45   }
46 };
47
48 /*****************************************************************************/
49
50 int
51 main(int argc, char **argv)
52 {
53   try
54   {
55     Application app = Application::New(&argc, &argv);
56
57     LinkerApp linkerApp (app);
58     app.MainLoop();
59   }
60   catch(...)
61   {
62     std::cout << "Exception caught";
63   }
64
65   return 0;
66 }