File indexing completed on 2024-04-28 04:32:45

0001 /*
0002     SPDX-FileCopyrightText: 2008 Pino Toscano <pino@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef OKULAR_SOURCEREFERENCE_P_H
0008 #define OKULAR_SOURCEREFERENCE_P_H
0009 
0010 class QString;
0011 class QUrl;
0012 
0013 namespace Okular
0014 {
0015 bool extractLilyPondSourceReference(const QUrl &url, QString *file, int *row, int *col);
0016 QString sourceReferenceToolTip(const QString &source, int row, int col);
0017 
0018 }
0019 
0020 #endif