Tizen 2.1 base
[platform/core/uifw/ise-engine-sunpinyin.git] / wrapper / ibus / src / pointer.h
1 /*
2  * Copyright (c) 2010 Kov Chai <tchaikov@gmail.com>
3  *
4  * The contents of this file are subject to the terms of either the GNU Lesser
5  * General Public License Version 2.1 only ("LGPL") or the Common Development and
6  * Distribution License ("CDDL")(collectively, the "License"). You may not use this
7  * file except in compliance with the License. You can obtain a copy of the CDDL at
8  * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
9  * http://www.opensource.org/licenses/lgpl-license.php. See the License for the 
10  * specific language governing permissions and limitations under the License. When
11  * distributing the software, include this License Header Notice in each file and
12  * include the full text of the License in the License file as well as the
13  * following notice:
14  * 
15  * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
16  * (CDDL)
17  * For Covered Software in this distribution, this License shall be governed by the
18  * laws of the State of California (excluding conflict-of-law provisions).
19  * Any litigation relating to this License shall be subject to the jurisdiction of
20  * the Federal Courts of the Northern District of California and the state courts
21  * of the State of California, with venue lying in Santa Clara County, California.
22  * 
23  * Contributor(s):
24  * 
25  * If you wish your version of this file to be governed by only the CDDL or only
26  * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
27  * include this software in this distribution under the [CDDL or LGPL Version 2.1]
28  * license." If you don't indicate a single choice of license, a recipient has the
29  * option to distribute your version of this file under either the CDDL or the LGPL
30  * Version 2.1, or to extend the choice of license to its licensees as provided
31  * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
32  * Version 2 license, then the option applies only if the new code is made subject
33  * to such option by the copyright holder. 
34  */
35
36 #ifndef POINTER_H
37 #define POINTER_H
38
39 template <typename T>
40 class Pointer
41 {
42 public:
43     Pointer(T *p = 0) 
44         : m_p(0)
45     {
46         set(p);
47     }
48
49     ~Pointer()
50     {
51         set(0);
52     }
53     
54     Pointer(const Pointer& p)
55         : m_p(0)
56     {
57         set(p.m_p);
58     }
59
60     Pointer& operator=(T *object)
61     {
62         set(object);
63         return *this;
64     }
65
66     Pointer& operator=(const Pointer<T>& src)
67     {
68         set(src.m_p);
69         return *this;
70     }
71
72     const T* operator->() const
73     {
74         return m_p;
75     }
76
77     T* operator->()
78     {
79         return m_p;
80     }
81
82     operator T* () const 
83     {
84         return m_p;
85     }
86
87     operator bool () const
88     {
89         return m_p != 0;
90     }
91     
92 private:
93     
94     T *m_p;
95
96     void set(T *p)
97     {
98         if (m_p) {
99             g_object_unref(m_p);
100         }
101         m_p = p;
102         
103         if (p) {
104             g_object_ref_sink(p);
105         }
106     }
107 };
108
109 #endif// POINTER_H