compute-runtime/runtime/utilities/directory.h

19 lines
274 B
C
Raw Normal View History

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