1 /***************************************************************************
2 * Copyright (C) 2007 by Pino Toscano <pino@kde.org> *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 ***************************************************************************/
10 #include "sourcereference.h"
12 #include <QtCore/QString>
14 using namespace Okular
;
16 class SourceReference::Private
20 : row( 0 ), column( 0 )
29 SourceReference::SourceReference( const QString
&fileName
, int row
, int column
)
32 d
->filename
= fileName
;
37 SourceReference::~SourceReference()
42 QString
SourceReference::fileName() const
47 int SourceReference::row() const
52 int SourceReference::column() const