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