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.
31 lines
716 B
31 lines
716 B
// |
|
// 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.h> |
|
#include <qstring.h> |
|
|
|
class DVI_SourceFileSplitter |
|
{ |
|
public: |
|
DVI_SourceFileSplitter(const QString & scrlink, const QString & dviFile); |
|
|
|
QString fileName() { return m_fileInfo.fileName(); } |
|
QString filePath() { return m_fileInfo.absFilePath(); } |
|
bool fileExists() { return m_fileInfo.exists(); } |
|
|
|
Q_UINT32 line() { return m_line; } |
|
|
|
private: |
|
QFileInfo m_fileInfo; |
|
Q_UINT32 m_line; |
|
bool m_exists; |
|
}; |
|
#endif
|
|
|