okular/core/sourcereference_p.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
909 B
C
Raw Normal View History

/***************************************************************************
* Copyright (C) 2008 by Pino Toscano <pino@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef OKULAR_SOURCEREFERENCE_P_H
#define OKULAR_SOURCEREFERENCE_P_H
class QString;
2014-08-10 18:36:41 +00:00
class QUrl;
namespace Okular
{
2014-08-10 18:36:41 +00:00
bool extractLilyPondSourceReference(const QUrl &url, QString *file, int *row, int *col);
QString sourceReferenceToolTip(const QString &source, int row, int col);
}
#endif