| 34 | } |
| 35 | |
| 36 | inline void ListCodecs(TCodecList& lst) const { |
| 37 | for (const auto& it : Registry) { |
| 38 | lst.push_back(it.first); |
| 39 | } |
| 40 | |
| 41 | Sort(lst.begin(), lst.end()); |
| 42 | } |
| 43 | |
| 44 | inline void Add(ICodec* codec) { |
| 45 | Registry[codec->Name()] = codec; |
no test coverage detected