summaryrefslogtreecommitdiffstats
path: root/kdvi/dvisourcesplitter.h
blob: f0028bf29860503aebe7a301878bdce06e0c4279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// -*- C++ -*-
//
// 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>

class QString;


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