17 lines
328 B
C++
17 lines
328 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/sharings/sharing_factory.h"
|
|
|
|
class SharingFactoryMock : public NEO::SharingFactory {
|
|
public:
|
|
using NEO::SharingFactory::sharings;
|
|
|
|
SharingFactoryMock() = default;
|
|
~SharingFactoryMock() = default;
|
|
};
|