X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=build%2Ftizen%2Flinker-test.cpp;h=4a9cf3cd0e10aa6a7154c425b1a2ea78ab0e9097;hb=a89af58f954b0f2b846a2f2c611d990ddde8adab;hp=2d4a4beb3c7ea58de60f49696775150285ec7138;hpb=398db97500b00d1a7efdbbbc69eb60956b88b038;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/build/tizen/linker-test.cpp b/build/tizen/linker-test.cpp index 2d4a4be..4a9cf3c 100644 --- a/build/tizen/linker-test.cpp +++ b/build/tizen/linker-test.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,15 +16,14 @@ */ // EXTERNAL INCLUDES -#include -#include #include -#include +#include +#include // INTERNAL INCLUDES -#include -#include #include +#include +#include using namespace Dali; @@ -35,13 +34,12 @@ using namespace Dali; class LinkerApp : public ConnectionTracker { public: - LinkerApp(Application &app) + LinkerApp(Application& app) { app.InitSignal().Connect(this, &LinkerApp::Create); } public: - void Create(Application& app) { } @@ -49,14 +47,13 @@ public: /*****************************************************************************/ -int -main(int argc, char **argv) +int main(int argc, char** argv) { try { Application app = Application::New(&argc, &argv); - LinkerApp linkerApp (app); + LinkerApp linkerApp(app); app.MainLoop(); } catch(...)