#include <error.h>
Public Member Functions | |
| CError (const char *filename, unsigned long line, const std::string &txt) | |
| ~CError () throw () | |
| virtual const char * | what () const throw () |
| std::ostream & | operator<< (std::ostream &os) const |
Protected Attributes | |
| std::string | m_filename |
| std::string | m_txt |
| unsigned long | m_line |
Definition at line 50 of file error.h.
| CError::CError | ( | const char * | filename, | |
| unsigned long | line, | |||
| const std::string & | txt | |||
| ) |
Definition at line 58 of file error.cpp.
00060 : m_filename(filename), m_txt(txt), m_line(line) 00061 {}
| std::ostream & CError::operator<< | ( | std::ostream & | os | ) | const |
| const char * CError::what | ( | ) | const throw () [virtual] |
std::string CError::m_filename [protected] |
unsigned long CError::m_line [protected] |
std::string CError::m_txt [protected] |
1.4.7