1 /* 2 * Copyright (c) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #include "system_defined_pixelmap.h" 16 17 namespace OHOS { 18 namespace UDMF { 19 SystemDefinedPixelMap()20SystemDefinedPixelMap::SystemDefinedPixelMap() 21 { 22 } 23 SystemDefinedPixelMap(std::vector<uint8_t> & data)24SystemDefinedPixelMap::SystemDefinedPixelMap(std::vector<uint8_t> &data) 25 { 26 } 27 SystemDefinedPixelMap(UDType type,ValueType value)28SystemDefinedPixelMap::SystemDefinedPixelMap(UDType type, ValueType value) : SystemDefinedRecord(type, value) 29 { 30 } 31 GetSize()32int64_t SystemDefinedPixelMap::GetSize() 33 { 34 return 0; 35 } 36 GetRawData() const37std::vector<uint8_t> SystemDefinedPixelMap::GetRawData() const 38 { 39 return this->rawData_; 40 } 41 SetRawData(const std::vector<uint8_t> & rawData)42void SystemDefinedPixelMap::SetRawData(const std::vector<uint8_t> &rawData) 43 { 44 } 45 InitObject()46void SystemDefinedPixelMap::InitObject() 47 { 48 } 49 50 } // namespace UDMF 51 } // namespace OHOS