diff options
Diffstat (limited to '3rdParty/CppUnit/src/SourceLine.cpp')
| m--------- | 3rdParty/CppUnit | 0 | ||||
| -rw-r--r-- | 3rdParty/CppUnit/src/SourceLine.cpp | 81 | 
2 files changed, 0 insertions, 81 deletions
diff --git a/3rdParty/CppUnit b/3rdParty/CppUnit new file mode 160000 +Subproject b4c34eb947c6497c6387c55c7581ec875f4e7d4 diff --git a/3rdParty/CppUnit/src/SourceLine.cpp b/3rdParty/CppUnit/src/SourceLine.cpp deleted file mode 100644 index dfadae3..0000000 --- a/3rdParty/CppUnit/src/SourceLine.cpp +++ /dev/null @@ -1,81 +0,0 @@ -#include <cppunit/SourceLine.h> - - -CPPUNIT_NS_BEGIN - - -SourceLine::SourceLine() : -    m_lineNumber( -1 ) -{ -} - - -SourceLine::SourceLine( const SourceLine &other ) -   : m_fileName( other.m_fileName.c_str() ) -   , m_lineNumber( other.m_lineNumber ) -{ -} - - -SourceLine::SourceLine( const std::string &fileName, -                        int lineNumber ) -   : m_fileName( fileName.c_str() ) -   , m_lineNumber( lineNumber ) -{ -} - - -SourceLine & -SourceLine::operator =( const SourceLine &other ) -{ -   if ( this != &other ) -   { -      m_fileName = other.m_fileName.c_str(); -      m_lineNumber = other.m_lineNumber; -   } -   return *this; -} - - -SourceLine::~SourceLine() -{ -} - - -bool  -SourceLine::isValid() const -{ -  return !m_fileName.empty(); -} - - -int  -SourceLine::lineNumber() const -{ -  return m_lineNumber; -} - - -std::string  -SourceLine::fileName() const -{ -  return m_fileName; -} - - -bool  -SourceLine::operator ==( const SourceLine &other ) const -{ -  return m_fileName == other.m_fileName  && -         m_lineNumber == other.m_lineNumber; -} - - -bool  -SourceLine::operator !=( const SourceLine &other ) const -{ -  return !( *this == other ); -} - - -CPPUNIT_NS_END  | 
 Swift