| 60 | class nsCodingStateMachine { |
| 61 | public: |
| 62 | nsCodingStateMachine(const SMModel* sm) : mModel(sm) { mCurrentState = eStart; } |
| 63 | nsSMState NextState(char c){ |
| 64 | //for each byte we get its class , if it is first byte, we also get byte length |
| 65 | PRUint32 byteCls = GETCLASS(c); |
nothing calls this directly
no outgoing calls
no test coverage detected