2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2019-02-27 11:39:32 +01:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
class BuiltIns;
|
2019-02-27 11:39:32 +01:00
|
|
|
class Device;
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
class BuiltInFixture {
|
|
|
|
public:
|
2019-03-26 11:59:46 +01:00
|
|
|
void SetUp(NEO::Device *pDevice);
|
2017-12-21 00:45:38 +01:00
|
|
|
void TearDown();
|
|
|
|
|
2020-03-13 14:59:00 +01:00
|
|
|
NEO::BuiltIns *pBuiltIns = nullptr;
|
2017-12-21 00:45:38 +01:00
|
|
|
};
|