Merge from 2.2
[platform/framework/native/telephony.git] / inc / FTelITelephonyNetworkEventListener.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 /**
18  * @file        FTelITelephonyNetworkEventListener.h
19  * @brief       This is the header file for the %ITelephonyNetworkEventListener interface.
20  *
21  * This header file contains the declarations of the %ITelephonyNetworkEventListener interface.
22  */
23 #ifndef _FTEL_ITELEPHONY_NETWORK_EVENT_LISTENER_H_
24 #define _FTEL_ITELEPHONY_NETWORK_EVENT_LISTENER_H_
25
26
27 #include <FBase.h>
28 #include <FTelNetworkStatus.h>
29
30
31 namespace Tizen { namespace Telephony
32 {
33 /**
34  * @interface   ITelephonyNetworkEventListener
35  * @brief       This interface provides methods to listen to the change in the telephony network status.
36  *
37  * @since       2.0
38  *
39  * The %ITelephonyNetworkEventListener interface checks for status changes in the telephony network.
40  *
41  */
42 class _OSP_EXPORT_ ITelephonyNetworkEventListener
43         : virtual public Tizen::Base::Runtime::IEventListener
44 {
45 public:
46         /**
47      * This polymorphic destructor should be overridden if required. @n
48          * This way, the destructors of the derived classes are called when the destructor of this interface is called.
49      *
50      * @since   2.0
51      */
52         virtual ~ITelephonyNetworkEventListener(void) {}
53
54         /**
55      * Called when the telephony network status is changed.
56      *
57      * @since   2.0
58          *
59      * @param[in]   networkStatus       The changed telephony network status
60      */
61         virtual void OnTelephonyNetworkStatusChanged(const NetworkStatus& networkStatus) = 0;
62
63 protected:
64         //
65         // This method is for internal use only. Using this method can cause behavioral, security-related,
66         // and consistency-related issues in the application.
67         //
68         // This method is reserved and may change its name at any time without prior notice.
69         //
70         // @since 2.0
71         //
72         virtual void ITelephonyNetworkEventListener_Reserved1(void) {};
73
74         //
75         // This method is for internal use only. Using this method can cause behavioral, security-related,
76         // and consistency-related issues in the application.
77         //
78         // This method is reserved and may change its name at any time without prior notice.
79         //
80         // @since 2.0
81         //
82         virtual void ITelephonyNetworkEventListener_Reserved2(void) {};
83 }; // ITelephonyNetworkEventListener
84
85 }} // Tizen::Telephony
86 #endif // _FTEL_ITELEPHONY_NETWORK_EVENT_LISTENER_H_