18 lines
293 B
C++
18 lines
293 B
C++
// Copyright 2020 Intel Corporation
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#pragma once
|
|
|
|
#include "MemoryView.h"
|
|
|
|
namespace ispcrt {
|
|
namespace base {
|
|
|
|
struct Kernel : public RefCounted {
|
|
Kernel() = default;
|
|
virtual ~Kernel() = default;
|
|
};
|
|
|
|
} // namespace base
|
|
} // namespace ispcrt
|