| 41 | |
| 42 | template <class T> |
| 43 | inline void SerializeFromFile(const TString& fileName, T& c) { |
| 44 | TIFStream in(fileName); |
| 45 | SerializeFromStream(in, c); |
| 46 | } |
| 47 | |
| 48 | class TYaStreamOutput: public IBinaryStream { |
| 49 | IOutputStream& Stream; |
no test coverage detected