[dali_1.2.62] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / public-api / common / extents.cpp
1 /*
2  * Copyright (c) 2017 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
18 // CLASS HEADER
19 #include <dali/public-api/common/extents.h>
20
21 namespace Dali
22 {
23
24 Extents::Extents()
25 : start(0),
26   end(0),
27   top(0),
28   bottom(0)
29   {
30   }
31
32 Extents::Extents( uint16_t start, uint16_t end, uint16_t top, uint16_t bottom )
33 : start( start ),
34   end( end ),
35   top( top ),
36   bottom( bottom )
37   {
38   }
39
40 Extents& Extents::operator=( const uint16_t* array )
41 {
42   start = array[0];
43   end = array[1];
44   top = array[2];
45   bottom = array[3];
46
47   return *this;
48 }
49
50 bool Extents::operator==( const Extents &rhs ) const
51 {
52   return ( start == rhs.start )&&
53     ( end == rhs.end )&&
54     ( top == rhs.top )&&
55     ( bottom == rhs.bottom );
56 }
57
58 bool Extents::operator!=( const Extents &rhs ) const
59 {
60   return !( *this == rhs );
61 }
62
63 std::ostream& operator<<( std::ostream& stream, const Extents& extents )
64 {
65   return stream << "[" << extents.start << ", " << extents.end << ", " << extents.top << ", " << extents.bottom << "]";
66 }
67
68 } // Dali