Tizen 2.0 Release
[apps/osp/Phone.git] / src / PhnSpeedDialInfo.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 /**
18  * @file    PhnSpeedDialInfo.cpp
19  * @brief   Speed dial Info class
20  */
21
22 #include "PhnSpeedDialInfo.h"
23
24 using namespace Tizen::Base;
25 using namespace Tizen::Base::Collection;
26
27 SpeedDialInfo::SpeedDialInfo(void)
28 {
29 }
30
31 SpeedDialInfo::~SpeedDialInfo(void)
32 {
33 }
34
35 bool
36 SpeedDialInfo::operator ==(const SpeedDialInfo& rhs) const
37 {
38         return (this->rowId == rhs.rowId);
39 }
40
41 bool
42 SpeedDialInfo::operator !=(const SpeedDialInfo& rhs) const
43 {
44         return (!(this->rowId == rhs.rowId));
45 }
46
47 SpeedDialInfo&
48 SpeedDialInfo::operator =(const SpeedDialInfo& rhs)
49 {
50         if (this != null)
51         {
52                 this->rowId = rhs.rowId;
53                 this->contactId.Append(rhs.contactId);
54                 this->keyMapping = rhs.keyMapping;
55         }
56         return *this;
57 }