| 28 | |
| 29 | virtual int GetLink() { return linkState; } |
| 30 | virtual int QueueSize() { return queue.get_length(); } |
| 31 | virtual NetworkPacket Dequeue() { |
| 32 | if(queue.get_length()) { |
| 33 | return queue.remove_at(0); |
nothing calls this directly
no test coverage detected