Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Mediacontent / IEventFindPlaylist.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16
17
18
19 #ifndef _ABSTRACT_LAYER_IEVENT_FIND_PLAYLIST_H_
20 #define _ABSTRACT_LAYER_IEVENT_FIND_PLAYLIST_H_
21
22 #include <vector>
23 #include <Commons/IEvent.h>
24 #include <dpl/shared_ptr.h>
25 #include "MediacontentPlaylist.h"
26
27
28 using namespace std;
29
30 namespace TizenApis {
31 namespace Api {
32 namespace Mediacontent {
33
34 class IEventFindPlaylist : public WrtDeviceApis::Commons::IEvent<IEventFindPlaylist>
35 {
36         public:
37         IEventFindPlaylist():m_result(false){}
38         ~IEventFindPlaylist(){ }                
39         void addPlaylist(MediacontentPlaylistPtr value){ m_playlist.push_back(value);}
40         void setResult(bool value){m_result = value;}
41         bool getResult()const {return m_result; }
42         vector<MediacontentPlaylistPtr> getPlaylist(){return m_playlist; }
43
44         virtual void clearOnCancel(){;}
45
46
47         private:
48         vector<MediacontentPlaylistPtr> m_playlist;           //OUTPUT: result list
49         bool m_result;                                  //OUTPUT: operation result
50 };
51
52 typedef DPL::SharedPtr<IEventFindPlaylist> IEventFindPlaylistPtr;
53
54 }
55 }
56 }
57 #endif /* _ABSTRACT_LAYER_IEVENT_FIND_PLAYLIST_H_ */