summaryrefslogtreecommitdiffstats
path: root/kdvi/dvisourcesplitter.h
blob: 5253ce4a31cbaabbf4d243e77a626a6e80e8e222 (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 <tqfileinfo.h>

class TQString;


class DVI_SourceFileSplitter 
{
public:
  DVI_SourceFileSplitter(const TQString & scrlink, const TQString & dviFile);
  
  TQString  fileName() { return m_fileInfo.fileName(); }
  TQString  filePath() { return m_fileInfo.absFilePath(); }
  bool     fileExists() { return m_fileInfo.exists(); }
  
  Q_UINT32 line()     { return m_line; }
  
private:
  TQFileInfo m_fileInfo;
  Q_UINT32  m_line;
  bool      m_exists; 
};
#endif