Revert "Move new mesh API to devel-api"
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-buffer.cpp
1 /*
2  * Copyright (c) 2015 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/object/property-buffer.h> // Dali::PropertyBuffer
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/object/property-map.h> // Dali::Property::Map
23 #include <dali/internal/event/common/object-impl-helper.h> // Dali::Internal::ObjectHelper
24 #include <dali/internal/event/common/property-buffer-impl.h>  // Dali::Internal::PropertyBuffer
25
26 namespace Dali
27 {
28
29 PropertyBuffer PropertyBuffer::New( Dali::Property::Map& bufferFormat, std::size_t size )
30 {
31   Internal::PropertyBufferPtr propertyBuffer = Internal::PropertyBuffer::New();
32
33   propertyBuffer->SetFormat( bufferFormat );
34   propertyBuffer->SetSize( size );
35
36   return PropertyBuffer( propertyBuffer.Get() );
37 }
38
39 PropertyBuffer::PropertyBuffer()
40 {
41 }
42
43 PropertyBuffer::~PropertyBuffer()
44 {
45 }
46
47 PropertyBuffer::PropertyBuffer( const PropertyBuffer& handle )
48 : Handle( handle )
49 {
50 }
51
52 PropertyBuffer PropertyBuffer::DownCast( BaseHandle handle )
53 {
54   return PropertyBuffer( dynamic_cast<Dali::Internal::PropertyBuffer*>(handle.GetObjectPtr()));
55 }
56
57 PropertyBuffer& PropertyBuffer::operator=( const PropertyBuffer& handle )
58 {
59   BaseHandle::operator=( handle );
60   return *this;
61 }
62
63 void PropertyBuffer::SetSize( std::size_t size )
64 {
65   GetImplementation(*this).SetSize( size );
66 }
67
68 std::size_t PropertyBuffer::GetSize() const
69 {
70   return  GetImplementation(*this).GetSize();
71 }
72
73 void PropertyBuffer::SetData( void* data )
74 {
75   GetImplementation(*this).SetData( data );
76 }
77
78 PropertyBuffer::PropertyBuffer( Internal::PropertyBuffer* pointer )
79 : Handle( pointer )
80 {
81 }
82
83 } // namespace Dali