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.
32 lines
785 B
32 lines
785 B
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; c-brace-offset: 0; -*- |
|
// |
|
// C++ Interface: dvisourcesplitter |
|
// |
|
// Author: Jeroen Wijnhout <Jeroen.Wijnhout@kdemail.net>, (C) 2004 |
|
// |
|
// Copyright: See COPYING file that comes with this distribution |
|
// |
|
|
|
#ifndef DVI_SOURCEFILESPLITTER_H |
|
#define DVI_SOURCEFILESPLITTER_H |
|
|
|
#include <QFileInfo> |
|
|
|
class QString; |
|
|
|
|
|
class DVI_SourceFileSplitter |
|
{ |
|
public: |
|
DVI_SourceFileSplitter(const QString & scrlink, const QString & dviFile); |
|
|
|
QString fileName() const { return m_fileInfo.fileName(); } |
|
QString filePath() const { return m_fileInfo.absoluteFilePath(); } |
|
bool fileExists() const { return m_fileInfo.exists(); } |
|
quint32 line() const { return m_line; } |
|
|
|
private: |
|
QFileInfo m_fileInfo; |
|
quint32 m_line; |
|
}; |
|
#endif
|
|
|