////////////////////////////////////////////////////////////////////////// Init -- the job of init is to clear out the RefCountObj table, fill out the mTypeArray, and and write the header information //////////////////////////////////////////////////////////////////////////
| 140 | // mTypeArray, and and write the header information |
| 141 | /////////////////////////////////////////////////////////////////////////////// |
| 142 | void cSerializerImpl::Init() |
| 143 | { |
| 144 | cDebug d("cSerializerImpl::Init"); |
| 145 | d.TraceDetail("Entering; IsWriting = %s\n", IsWriting() ? "true" : "false"); |
| 146 | |
| 147 | mRefCtObjTbl.Clear(); |
| 148 | |
| 149 | mbInit = true; |
| 150 | } |
| 151 | |
| 152 | /////////////////////////////////////////////////////////////////////////////// |
| 153 | // Finit |
nothing calls this directly
no test coverage detected