#include <CReadoutException.h>
Inheritance diagram for CReadoutException:
Public Methods | |
CReadoutException (const char *pszAction) | |
CReadoutException (const CReadoutException &rhs) | |
virtual | ~CReadoutException () |
CReadoutException & | operator= (const CReadoutException &rhs) |
int | operator== (const CReadoutException &rhs) |
int | operator!= (const CReadoutException &rhs) |
Definition at line 293 of file CReadoutException.h.
|
Default constructor. This is called when declarations of the form e.g.:
Definition at line 290 of file CReadoutException.cpp. |
|
Copy construction. This is invoked when e.g. an object is passed by value to a function. The copy constructor makes a clone of the rhs object.
Definition at line 301 of file CReadoutException.cpp. |
|
Definition at line 300 of file CReadoutException.h. |
|
Definition at line 304 of file CReadoutException.h. References operator==(). |
|
Assignment operation. This member function supports assignment of an object of this class to an object of the same class.
Definition at line 313 of file CReadoutException.cpp. Referenced by CInvalidPacketStateException::operator=(), and CBadTransitionException::operator=(). |
|
Equality comparison. At present, there is nothing to distinguish this class from it's base class (CException). Therefore, copmparison is true if CException::operator== is true.
Definition at line 331 of file CReadoutException.cpp. Referenced by operator!=(), CInvalidPacketStateException::operator==(), and CBadTransitionException::operator==(). |