#include <CStatusModule.h>
Inheritance diagram for CStatusModule:
Public Methods | |
CStatusModule () | |
Default constructor. | |
CStatusModule (const CStatusModule &rhs) | |
Copy constructor. | |
~CStatusModule () | |
Destructor. | |
CStatusModule & | operator= (const CStatusModule &rhs) |
Assignment. | |
int | operator== (const CStatusModule &rhs) const |
Comparison for equality. | |
int | operator!= (const CStatusModule &rhs) const |
virtual void | GoBusy ()=0 |
virtual void | GoClear ()=0 |
virtual void | ModuleClear ()=0 |
Definition at line 290 of file CStatusModule.h.
|
Default constructor. Default constructor. This is called when declarations of the form e.g.:
Definition at line 288 of file CStatusModule.cpp. |
|
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 297 of file CStatusModule.cpp. |
|
Destructor.
Definition at line 299 of file CStatusModule.h. |
|
Implemented in CCAMACStatusModule, and CVMEStatusModule. Referenced by CExperiment::SetBusy(). |
|
Implemented in CCAMACStatusModule, and CVMEStatusModule. Referenced by CExperiment::ClearBusy(). |
|
Implemented in CCAMACStatusModule, and CVMEStatusModule. Referenced by CExperiment::ClearBusy(). |
|
Definition at line 303 of file CStatusModule.h. References operator==(). |
|
Assignment. Assignment operation. This member function supports assignment of an object of this class to an object of the same class. Definition at line 308 of file CStatusModule.cpp. Referenced by CVMEStatusModule::operator=(), and CCAMACStatusModule::operator=(). |
|
Comparison for equality.
Definition at line 314 of file CStatusModule.cpp. Referenced by operator!=(), CVMEStatusModule::operator==(), and CCAMACStatusModule::operator==(). |