CanvasRenderer:: Add Picture class
[platform/core/uifw/dali-adaptor.git] / dali / internal / canvas-renderer / generic / picture-impl-generic.cpp
1 /*
2  * Copyright (c) 2021 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/internal/canvas-renderer/generic/picture-impl-generic.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <dali/public-api/object/type-registry.h>
24
25 namespace Dali
26 {
27 namespace Internal
28 {
29 namespace Adaptor
30 {
31 namespace // unnamed namespace
32 {
33 // Type Registration
34 Dali::BaseHandle Create()
35 {
36   return Dali::BaseHandle();
37 }
38
39 Dali::TypeRegistration type(typeid(Dali::CanvasRenderer::Picture), typeid(Dali::BaseHandle), Create);
40
41 } // unnamed namespace
42
43 PictureGeneric* PictureGeneric::New()
44 {
45   return new PictureGeneric();
46 }
47
48 PictureGeneric::PictureGeneric()
49 {
50 }
51
52 PictureGeneric::~PictureGeneric()
53 {
54 }
55
56 bool PictureGeneric::Load(const std::string& url)
57 {
58   return false;
59 }
60
61 bool PictureGeneric::SetSize(Vector2 size)
62 {
63   return false;
64 }
65
66 Vector2 PictureGeneric::GetSize() const
67 {
68   return Vector2::ZERO;
69 }
70
71 } // namespace Adaptor
72
73 } // namespace Internal
74
75 } // namespace Dali