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.
ktechlab/src/languages/sourceline.h

43 lines
1.3 KiB

/***************************************************************************
* 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