Ferreteria/v0.6/clade/Sys/Events/ItWent/CommOp
Jump to navigation
Jump to search
| Clade Family | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| ItWent | → CommOp | → MsgsOp | ||||||||
| ||||||||||
About
- purpose: an ItWent for communication operations
Code
as of 2025-10-01
interface iCommOp extends BaseIface {
function QResponseStd() : QStrIface;
function QResponseErr() : QStrIface;
}
class cCommOp extends BaseClass implements iCommOp {
private $osStd=NULL; public function QResponseStd() : QStrIface { return $this->osStd ?? ($this->osStd = new QStrClass); }
private $osErr=NULL; public function QResponseErr() : QStrIface { return $this->osErr ?? ($this->osErr = new QStrClass); }
}