You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
406 B
20 lines
406 B
/* |
|
SPDX-FileCopyrightText: 2008 Pino Toscano <pino@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef OKULAR_SOURCEREFERENCE_P_H |
|
#define OKULAR_SOURCEREFERENCE_P_H |
|
|
|
class QString; |
|
class QUrl; |
|
|
|
namespace Okular |
|
{ |
|
bool extractLilyPondSourceReference(const QUrl &url, QString *file, int *row, int *col); |
|
QString sourceReferenceToolTip(const QString &source, int row, int col); |
|
|
|
} |
|
|
|
#endif
|
|
|