/* * Copyright (C) 2018-2021 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