22 lines
307 B
C++
22 lines
307 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
class BuiltIns;
|
|
class Device;
|
|
} // namespace NEO
|
|
|
|
class BuiltInFixture {
|
|
public:
|
|
void SetUp(NEO::Device *pDevice);
|
|
void TearDown();
|
|
|
|
NEO::BuiltIns *pBuiltIns = nullptr;
|
|
};
|