Change copy constructor and copy assignment in common classes to use the default...
[platform/core/uifw/dali-core.git] / dali / public-api / animation / linear-constrainer.cpp
1 /*
2  * Copyright (c) 2020 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/animation/linear-constrainer.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/animation/linear-constrainer-impl.h>
23
24
25 namespace Dali
26 {
27
28 LinearConstrainer LinearConstrainer::New()
29 {
30   Internal::LinearConstrainer* internal = Internal::LinearConstrainer::New();
31   return LinearConstrainer(internal);
32 }
33
34 LinearConstrainer LinearConstrainer::DownCast( BaseHandle handle )
35 {
36   return LinearConstrainer( dynamic_cast<Dali::Internal::LinearConstrainer*>(handle.GetObjectPtr()) );
37 }
38
39 LinearConstrainer::LinearConstrainer()
40 {
41 }
42
43 LinearConstrainer::~LinearConstrainer()
44 {
45 }
46
47 LinearConstrainer::LinearConstrainer(const LinearConstrainer& handle) = default;
48
49 LinearConstrainer::LinearConstrainer(Internal::LinearConstrainer* internal)
50 : Handle(internal)
51 {
52 }
53
54 LinearConstrainer& LinearConstrainer::operator=(const LinearConstrainer& rhs) = default;
55
56 LinearConstrainer::LinearConstrainer( LinearConstrainer&& rhs ) = default;
57
58 LinearConstrainer& LinearConstrainer::operator=( LinearConstrainer&& rhs ) = default;
59
60 void LinearConstrainer::Apply( Dali::Property target, Dali::Property source, const Vector2& range, const Vector2& wrap )
61 {
62   GetImplementation(*this).Apply( target, source, range, wrap );
63 }
64
65 void LinearConstrainer::Remove( Dali::Handle& target )
66 {
67   GetImplementation(*this).Remove( target );
68 }
69
70
71 } // Dali