blob: f7991413474df8f3f5c59ff07bff1ab85d8e4af7 (
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
35
36
37
38
39
40
41
42
|
/***************************************************************************
* Copyright (C) 2005 by David Saxton *
* david@bluehaze.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef SOURCELINE_H
#define SOURCELINE_H
#include <tqstring.h>
/**
@author David Saxton
*/
class SourceLine
{
public:
/**
* Creates an invalid source line (line is negative).
*/
SourceLine();
SourceLine( const TQString & fileName, int line );
TQString fileName() const { return m_fileName; }
int line() const { return m_line; }
bool isValid() const { return m_line >= 0; }
bool operator < ( const SourceLine & sourceLine ) const;
bool operator == ( const SourceLine & sourceLine ) const;
protected:
TQString m_fileName;
int m_line;
};
#endif
|