/* * Copyright (C) 2017-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "opencl/source/sharings/sharing_factory.h" namespace NEO { template SharingFactory::RegisterSharing::RegisterSharing() { sharingContextBuilder[T::sharingId] = new F; }; } // namespace NEO