File indexing completed on 2024-12-08 13:30:49
0001 // clang-format off 0002 /* 0003 * KDiff3 - Text Diff And Merge Tool 0004 * 0005 * SPDX-FileCopyrightText: 2021-2021 Michael Reeves reeves.87@gmail.com 0006 * SPDX-License-Identifier: GPL-2.0-or-later 0007 */ 0008 // clang-format on 0009 0010 #ifndef DIRECTORY_LIST_H 0011 #define DIRECTORY_LIST_H 0012 0013 #include <list> 0014 0015 class FileAccess; 0016 using DirectoryList = std::list<FileAccess>; 0017 0018 #endif