| 874 | class LogStream : public ostrstream { |
| 875 | public: |
| 876 | LogStream(char *buf, int len, int ctr) |
| 877 | : ostrstream(buf, len), |
| 878 | ctr_(ctr) { |
| 879 | self_ = this; |
| 880 | } |
| 881 | |
| 882 | int ctr() const { return ctr_; } |
| 883 | void set_ctr(int ctr) { ctr_ = ctr; } |
nothing calls this directly
no outgoing calls
no test coverage detected