| 2229 | /** Creates an uninitialised stream. */ |
| 2230 | template <typename C, typename T> |
| 2231 | inline |
| 2232 | pstream_common<C,T>::pstream_common() |
| 2233 | : std::basic_ios<C,T>(NULL) |
| 2234 | , command_() |
| 2235 | , buf_() |
| 2236 | { |
| 2237 | this->std::basic_ios<C,T>::rdbuf(&buf_); |
| 2238 | } |
| 2239 | |
| 2240 | /** |
| 2241 | * Initialises the stream buffer by calling |
nothing calls this directly
no outgoing calls
no test coverage detected