| 71 | bool open() const { return (f_ != NULL); } |
| 72 | private: |
| 73 | File(FILE* f_des, const std::string& name) |
| 74 | : f_(f_des), name_(name) { } |
| 75 | File(gzFile gz_des, const std::string& name) |
| 76 | : gz_f_(gz_des), name_(name) { |
| 77 | is_gz_ = true; |
nothing calls this directly
no outgoing calls
no test coverage detected