tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / DEPRACATED / Telephony / LogEntryWrapper.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  * @file        LogEntryWrapper.h
18  * @author      Lukasz Marek (l.marek@samsung.com)
19  * @version     0.2
20  */
21
22 #ifndef _SLP20_LOG_ENTRY_WRAPPER_H_
23 #define _SLP20_LOG_ENTRY_WRAPPER_H_
24
25 #include <dpl/shared_ptr.h>
26 #include <contacts-svc.h>
27 #include <API/Telephony/LogEntry.h>
28 #include <API/Telephony/LogFilter.h>
29
30 namespace WrtPlugins {
31 namespace Platform {
32 class LogEntryWrapper
33 {
34   public:
35     explicit LogEntryWrapper(CTSvalue *log);
36     virtual ~LogEntryWrapper();
37     bool             matchFilters(const Api::LogFilterPtr &filter);
38     Api::LogEntryPtr getAbstractCall() const;
39   private:
40     Api::LogEntryPtr m_logEntry;
41     bool             convertPlatformStructToAbstractStruct(CTSvalue *log);
42 };
43
44 typedef DPL::SharedPtr<LogEntryWrapper> LogEntryWrapperPtr;
45 }
46 }
47
48 #endif /* _SLP20_EVENT_WRAPPER_H_ */