1 /*
2  * Copyright (C) 2020-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 
10 #include "level_zero/core/source/sampler/sampler.h"
11 
12 namespace L0 {
13 
14 class SamplerImp : public Sampler {
15   public:
16     ze_result_t destroy() override;
17     virtual ze_result_t initialize(Device *device, const ze_sampler_desc_t *desc);
18 };
19 
20 } // namespace L0
21