X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=automated-tests%2Fsrc%2Fdali-adaptor%2Fdali-test-suite-utils%2Ftest-render-controller.h;h=f7cafa4aa47943aa7f58d9578215aa8ecea69723;hb=afe08dc50446f00bb0f78439960be465bcb2e7aa;hp=7c785f13e7e3d647c2590b4369a503d8b51a5119;hpb=5c20957f93fefc2c9d7ec3698521b2ee4b854300;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-render-controller.h b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-render-controller.h index 7c785f1..f7cafa4 100644 --- a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-render-controller.h +++ b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-render-controller.h @@ -1,8 +1,8 @@ -#ifndef __TEST_RENDER_CONTROLLER_H__ -#define __TEST_RENDER_CONTROLLER_H__ +#ifndef TEST_RENDER_CONTROLLER_H +#define TEST_RENDER_CONTROLLER_H /* - * Copyright (c) 2018 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -19,20 +19,19 @@ */ // INTERNAL INCLUDES -#include #include +#include namespace Dali { - class DALI_CORE_API TestRenderController : public Dali::Integration::RenderController { public: TestRenderController(); - ~TestRenderController(); + ~TestRenderController() override; - virtual void RequestUpdate( bool forceUpdate ); - virtual void RequestProcessEventsOnIdle( bool forceProcess ); + void RequestUpdate(bool forceUpdate) override; + void RequestProcessEventsOnIdle(bool forceProcess) override; typedef enum { @@ -43,12 +42,11 @@ public: bool WasCalled(TestRenderControllerFuncEnum func); void Initialize(); - private: bool mRequestUpdateCalled; bool mRequestProcessEventsOnIdleCalled; }; -} // Dali +} // namespace Dali -#endif +#endif // TEST_RENDER_CONTROLLER_H