blob: 323d5b3332e2e8a7a5ba44dce4880b283c5054e0 [file] [log] [blame]
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.idea.perf
import com.intellij.openapi.project.Project
import com.intellij.openapi.vfs.VirtualFile
interface WholeProjectFileProvider {
fun provideFiles(project: Project): Collection<VirtualFile>
}