mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
19 lines
265 B
C++
19 lines
265 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class OclocArgHelper;
|
|
|
|
namespace Ocloc {
|
|
|
|
int validate(const std::vector<std::string> &args, OclocArgHelper *argHelper);
|
|
}
|