[DCM-1064] Fix the network status event issue.
[platform/framework/native/telephony.git] / src / FTel_SimEventArg.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        FTel_SimEventArg.h
19  * @brief       This is the header file for _SimEventArg class.
20  *
21  * This header file contains the declarations of _SimEventArg class.
22  */
23
24
25 #ifndef _FTEL_INTERNAL_SIM_EVENT_ARG_H_
26 #define _FTEL_INTERNAL_SIM_EVENT_ARG_H_
27
28 #include <FBaseObject.h>
29 #include <FBaseDataType.h>
30 #include <FBaseRtIEventArg.h>
31 #include <FTelTypes.h>
32
33 namespace Tizen { namespace Telephony
34 {
35
36 enum _SimEventType
37 {
38         _SIM_EVENT_NONE,
39         _SIM_EVENT_SIM_STATE_CHANGED
40 };
41
42
43 /**
44  * @class   _SimEventArg
45  * @brief   This class is used as an argument of methods of the ITelephonySimEventListener class.
46  *
47  * This class is used as an argument of ITelephonyNetworkEventListener methods.
48  * When a SimManager event occurs, the _SimEvent object finds a ITelephonySimEventListener object
49  * which is registered for the SimManager object and calls an appropriate method of the listener.
50  */
51
52 class _SimEventArg
53     : public Tizen::Base::Object
54     , public Tizen::Base::Runtime::IEventArg
55 {
56 public:
57     _SimEventArg(void);
58
59     _SimEventArg(_SimEventType type, SimState state);
60
61     virtual ~_SimEventArg(void) {};
62
63     _SimEventType GetEventType(void) const;
64
65     SimState GetSimState(void) const;
66
67 private:
68     _SimEventArg(const _SimEventArg& rhs);
69     _SimEventArg& operator =(const _SimEventArg& rhs);
70
71 private:
72     _SimEventType __eventType;
73     SimState __simState;
74
75 }; // _SimEventArg
76
77 } } // Tizen::Telephony
78
79 #endif // _FTEL_INTERNAL_SIM_EVENT_ARG_H_