#include <CTrigger.h>
Inheritance diagram for CTrigger:
Public Member Functions | |
CTrigger () | |
Default constructor. | |
CTrigger (const CTrigger &rhs) | |
Copy constructor. | |
~CTrigger () | |
Destructor. | |
CTrigger & | operator= (const CTrigger &rhs) |
Assignment. | |
int | operator== (const CTrigger &rhs) const |
Comparison for equality. | |
int | operator!= (const CTrigger &rhs) const |
virtual bool | operator() ()=0 |
Definition at line 289 of file CTrigger.h.
CTrigger::CTrigger | ( | ) |
Default constructor.
Default constructor. This is called when declarations of the form e.g.:
Definition at line 294 of file CTrigger.cpp.
CTrigger::CTrigger | ( | const CTrigger & | rhs | ) |
Copy constructor.
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 302 of file CTrigger.cpp.
CTrigger::~CTrigger | ( | ) | [inline] |
Assignment.
Assignment operation. This member function supports assignment of an object of this class to an object of the same class.
Definition at line 311 of file CTrigger.cpp.
Referenced by CVMETrigger::operator=(), and CCAMACTrigger::operator=().
int CTrigger::operator== | ( | const CTrigger & | rhs | ) | const |
Comparison for equality.
Equality comparison:
rhs | - Right hand side of the ==. |
Definition at line 323 of file CTrigger.cpp.
Referenced by operator!=().
int CTrigger::operator!= | ( | const CTrigger & | rhs | ) | const [inline] |
virtual bool CTrigger::operator() | ( | ) | [pure virtual] |
Implemented in CCAMACTrigger, and CVMETrigger.