| 84 | bool operator==(MachineStatus &other) { return mCode == other.mCode; } |
| 85 | bool operator!=(MachineStatus &other) { return mCode != other.mCode; } |
| 86 | MachineStatus(MachineStatusCode code) { mCode = code; /*mRRCause = GSM::L3RRCause::NormalEvent;*/ } |
| 87 | |
| 88 | }; |
| 89 | std::ostream& operator<<(std::ostream& os, MachineStatus::MachineStatusCode state); |
nothing calls this directly
no outgoing calls
no test coverage detected