mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Related-To: NEO-612 Change-Id: I221f0770ff19b65fd847d802010904646e816f47 Signed-off-by: Hoppe, Mateusz <mateusz.hoppe@intel.com>
17 lines
317 B
C++
17 lines
317 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/sharings/sharing_factory.h"
|
|
|
|
class SharingFactoryMock : public NEO::SharingFactory {
|
|
public:
|
|
using NEO::SharingFactory::sharings;
|
|
|
|
SharingFactoryMock() = default;
|
|
~SharingFactoryMock() = default;
|
|
};
|