/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ namespace AZ { namespace SceneAPI { namespace Containers { template ProxyPointer::ProxyPointer(const Type& value) : m_value(value) { } template Type& ProxyPointer::operator*() { return m_value; } template const Type& ProxyPointer::operator*() const { return m_value; } template Type* ProxyPointer::operator->() { return &m_value; } template const Type* ProxyPointer::operator->() const { return &m_value; } template ProxyPointer::ProxyPointer(Type& value) : m_value(value) { } template Type& ProxyPointer::operator*() { return m_value; } template const Type& ProxyPointer::operator*() const { return m_value; } template Type* ProxyPointer::operator->() { return &m_value; } template const Type* ProxyPointer::operator->() const { return &m_value; } } // Containers } // SceneAPI } // AZ