| 914 | class TFile::TImpl: public TAtomicRefCount<TImpl> { |
| 915 | public: |
| 916 | inline TImpl(FHANDLE fd, const TString& fname = TString()) |
| 917 | : Handle_(fd) |
| 918 | , FileName_(fname) |
| 919 | { |
| 920 | } |
| 921 | |
| 922 | inline TImpl(const char* fName, EOpenMode oMode) |
| 923 | : Handle_(fName, oMode) |
nothing calls this directly
no test coverage detected