From eaa742360c90d9fdbd63da2af608a3741b931eeb Mon Sep 17 00:00:00 2001 From: Paul Wisbey Date: Sun, 22 Mar 2015 13:14:25 +0000 Subject: [PATCH] Fixed TCT build Change-Id: Ied3ee3e4758ec76f28689ac3d9556b5857f765bb --- .../dali-test-suite-utils/test-platform-abstraction.cpp | 17 +++++++++++++++++ .../dali-test-suite-utils/test-platform-abstraction.h | 10 ++++++++++ 2 files changed, 27 insertions(+) diff --git a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.cpp b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.cpp index cac8dd0..60de63d 100644 --- a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.cpp +++ b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.cpp @@ -161,6 +161,23 @@ bool TestPlatformAbstraction::IsLoading() } /** + * @copydoc PlatformAbstraction::GetDefaultFontDescription() + */ +void TestPlatformAbstraction::GetDefaultFontDescription( std::string& family, std::string& style ) const +{ + // TODO +} + +/** + * @copydoc PlatformAbstraction::GetDefaultFontSize() + */ +int TestPlatformAbstraction::GetDefaultFontSize() const +{ + // TODO + return int(); +} + +/** * @copydoc PlatformAbstraction::SetDpi() */ void TestPlatformAbstraction::SetDpi (unsigned int dpiHorizontal, unsigned int dpiVertical) diff --git a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.h b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.h index b8fddb9..80e6bd6 100644 --- a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.h +++ b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.h @@ -136,6 +136,16 @@ public: virtual bool IsLoading(); /** + * @copydoc PlatformAbstraction::GetDefaultFontDescription() + */ + virtual void GetDefaultFontDescription( std::string& family, std::string& style ) const; + + /** + * @copydoc PlatformAbstraction::GetDefaultFontSize() + */ + virtual int GetDefaultFontSize() const; + + /** * @copydoc PlatformAbstraction::SetDpi() */ virtual void SetDpi (unsigned int dpiHorizontal, unsigned int dpiVertical); -- 2.7.4