compute-runtime/shared/source/utilities/directory.h

19 lines
280 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <string>
#include <vector>
namespace NEO {
class Directory {
public:
static std::vector<std::string> getFiles(const std::string &path);
};
}; // namespace NEO