| 93 | |
| 94 | template<typename T> |
| 95 | ASStreamIterator<T>::ASStreamIterator(T* in) |
| 96 | { |
| 97 | inStream = in; |
| 98 | buffer.reserve(200); |
| 99 | eolWindows = 0; |
| 100 | eolLinux = 0; |
| 101 | eolMacOld = 0; |
| 102 | outputEOL[0] = '\0'; |
| 103 | peekStart = 0; |
| 104 | prevLineDeleted = false; |
| 105 | checkForEmptyLine = false; |
| 106 | } |
| 107 | |
| 108 | template<typename T> |
| 109 | ASStreamIterator<T>::~ASStreamIterator() |
nothing calls this directly
no outgoing calls
no test coverage detected