diff options
Diffstat (limited to 'wearable_src/Application/EventApplicationLaunch.h')
-rwxr-xr-x | wearable_src/Application/EventApplicationLaunch.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/wearable_src/Application/EventApplicationLaunch.h b/wearable_src/Application/EventApplicationLaunch.h new file mode 100755 index 0000000..9666f92 --- /dev/null +++ b/wearable_src/Application/EventApplicationLaunch.h @@ -0,0 +1,51 @@ +// +// Tizen Web Device API +// Copyright (c) 2012 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. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an AS IS BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + + +#ifndef TIZENAPIS_API_APPLICATION_EVENT_APPLICATION_LAUNCH_H_ +#define TIZENAPIS_API_APPLICATION_EVENT_APPLICATION_LAUNCH_H_ + +#include <Commons/IEvent.h> +#include <dpl/shared_ptr.h> + +namespace DeviceAPI { +namespace Application { + +class EventApplicationLaunch : public WrtDeviceApis::Commons::IEvent<EventApplicationLaunch> +{ +private: + /* parameter */ + std::string m_appId; + +public: + void setAppId(std::string appId) + { + m_appId = appId; + } + + std::string getAppId() const + { + return m_appId; + } +}; + +typedef DPL::SharedPtr<EventApplicationLaunch> EventApplicationLaunchPtr; + +} // Application +} // DeviceAPI + +#endif // TIZENAPIS_API_APPLICATION_EVENT_APPLICATION_LAUNCH_H_ |