mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 08:37:12 +08:00
Resolves: NEO-4176 Change-Id: Iba48676fe145538c8213d21d514be38c702525c9 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
18 lines
345 B
C++
18 lines
345 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <memory>
|
|
namespace NEO {
|
|
struct HardwareInfo;
|
|
class Debugger {
|
|
public:
|
|
static std::unique_ptr<Debugger> create(HardwareInfo *hwInfo);
|
|
virtual ~Debugger() = default;
|
|
virtual bool isDebuggerActive() = 0;
|
|
};
|
|
} // namespace NEO
|