Fix the boiler plate codes
[framework/osp/social.git] / src / inc / FScl_IContactDbChangeEventListener.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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        FScl_IContactDbChangeEventListener.h
18  * @brief       This is the header file for the _IContactDbChangeEventListener class.
19  *
20  * This file contains the declarations of _IContactDbChangeEventListener.
21  */
22
23 #ifndef _FSCL_INTERNAL_ICONTACT_DB_CHANGE_EVENT_LISTENER_H_
24 #define _FSCL_INTERNAL_ICONTACT_DB_CHANGE_EVENT_LISTENER_H_
25
26 #include <FBaseRtIEventListener.h>
27
28 namespace Tizen { namespace Social
29 {
30
31 class _IContactDbChangeEventListener
32         : virtual public Tizen::Base::Runtime::IEventListener
33 {
34 public:
35         /**
36          * This polymorphic destructor should be overridden if required. This way, the destructors of the derived classes @n
37          * are called when the destructor of this interface is called.
38          *
39          * @since       2.0
40          */
41         virtual ~_IContactDbChangeEventListener(void){}
42
43         virtual void OnContactChanged(void) = 0;
44
45         virtual void OnCategoryChanged(void) = 0;
46
47         virtual void OnRelationChanged(void) = 0;
48 }; // _IContactDbChangeEventListener
49
50 }} // Tizen::Social
51
52 #endif // _FSCL_INTERNAL_ICONTACT_DB_CHANGE_EVENT_LISTENER_H_