| 29 | class StringReader : public DataReader, public virtual Object { |
| 30 | public: |
| 31 | StringReader(PacketReader& packet) : DataReader(packet) {} |
| 32 | private: |
| 33 | UInt8 followingType() { return packet.available() ? STRING : END; } |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected