/* * Copyright (c) 2022-2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef HISTREAMER_FOUNDATION_CPP_EXT_MEMORY_EXT_H #define HISTREAMER_FOUNDATION_CPP_EXT_MEMORY_EXT_H #include namespace OHOS { namespace Media { namespace CppExt { template struct _unique_ptr_if { typedef std::unique_ptr _single_object; }; template struct _unique_ptr_if { typedef std::unique_ptr _unknown_bound_array; }; template struct _unique_ptr_if { typedef void _known_bound_array; // not supported }; template typename _unique_ptr_if::_single_object make_unique(U&&... params) { return std::unique_ptr(new T(std::forward(params)...)); } template typename _unique_ptr_if::_unknown_bound_array make_unique(size_t n) { typedef typename std::remove_extent::type U; return std::unique_ptr(new U[n]()); } template typename _unique_ptr_if::_known_bound_array make_unique(Args&&...) = delete; } // CppExt } // Media } // OHOS #endif // HISTREAMER_FOUNDATION_CPP_EXT_MEMORY_EXT_H