blob: 764828cf0a76d99ce1fa40c8626f19e19eda0e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
namespace Utils { class FilePath; }
namespace Nim::Suggest {
class NimSuggest;
NimSuggest *getFromCache(const Utils::FilePath &filePath);
} // Nim::Suggest
|