From: Mateusz Malicki Date: Wed, 2 Apr 2014 13:22:11 +0000 (+0200) Subject: Added _AppLaunchCondition::GetLaunchArgs function X-Git-Tag: accepted/tizen/mobile/20140702.101033~2 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fframework%2Fnative%2Fappfw.git;a=commitdiff_plain;h=1be6ac6e87444db6cd6362e57c8e0651030da768 Added _AppLaunchCondition::GetLaunchArgs function This function is used by https://review.tizen.org/gerrit/gitweb?p=platform/framework/native/app-service.git;a=blob; f=plugins/alarm-condition-handler/AlarmConditionHandler.cpp; h=11f3e3607e32f41d2bd25efaaa83ff52d3d16d59;hb=refs/heads/tizen Change-Id: Idb222c3a263da5eecf490e365b442116ccf4333b Signed-off-by: Mateusz Malicki --- diff --git a/src/server/appfw/app/FApp_AppLaunchCondition.cpp b/src/server/appfw/app/FApp_AppLaunchCondition.cpp index 7fcf2c4..e789068 100644 --- a/src/server/appfw/app/FApp_AppLaunchCondition.cpp +++ b/src/server/appfw/app/FApp_AppLaunchCondition.cpp @@ -71,6 +71,12 @@ _AppLaunchCondition::GetUserData(void) const return const_cast(__pUserData); } +IList* +_AppLaunchCondition::GetLaunchArgs(void) const +{ + return __pArguments; +} + result _AppLaunchCondition::SetUserData(const Object* pUserData) { diff --git a/src/server/appfw/inc/FApp_AppLaunchCondition.h b/src/server/appfw/inc/FApp_AppLaunchCondition.h index b2eca99..5d5464a 100644 --- a/src/server/appfw/inc/FApp_AppLaunchCondition.h +++ b/src/server/appfw/inc/FApp_AppLaunchCondition.h @@ -87,6 +87,13 @@ public: */ Object* GetUserData(void) const; + /** + * Gets agruments. + * @return arguments + * + * @since 2.1 + */ + Tizen::Base::Collection::IList* GetLaunchArgs(void) const; private: /**