X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=dali%2Fdevel-api%2Fadaptor-framework%2Ffeedback-player.cpp;h=dd83bc2a49a074be6ea1979695c536847dea4da0;hb=HEAD;hp=ace10f67f31ab48df2edbb910478e79ccb9b77b2;hpb=fe8f8ee27e49309bfe4b1400ee0c279da3d8336d;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/feedback-player.cpp b/dali/devel-api/adaptor-framework/feedback-player.cpp index ace10f6..dd83bc2 100644 --- a/dali/devel-api/adaptor-framework/feedback-player.cpp +++ b/dali/devel-api/adaptor-framework/feedback-player.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 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. @@ -23,7 +23,6 @@ namespace Dali { - FeedbackPlayer::FeedbackPlayer() { } @@ -52,17 +51,17 @@ void FeedbackPlayer::Stop() GetImplementation(*this).Stop(); } -int FeedbackPlayer::PlaySound( const std::string& fileName ) +int FeedbackPlayer::PlaySound(const std::string& fileName) { return GetImplementation(*this).PlaySound(fileName); } -void FeedbackPlayer::StopSound( int handle ) +void FeedbackPlayer::StopSound(int handle) { GetImplementation(*this).StopSound(handle); } -void FeedbackPlayer::PlayFeedbackPattern( int type, int pattern ) +void FeedbackPlayer::PlayFeedbackPattern(int type, int pattern) { GetImplementation(*this).PlayFeedbackPattern(type, pattern); } @@ -72,8 +71,8 @@ bool FeedbackPlayer::LoadFile(const std::string& filename, std::string& data) return GetImplementation(*this).LoadFile(filename, data); } -FeedbackPlayer::FeedbackPlayer( Internal::Adaptor::FeedbackPlayer* player ) -: BaseHandle( player ) +FeedbackPlayer::FeedbackPlayer(Internal::Adaptor::FeedbackPlayer* player) +: BaseHandle(player) { }