| 38 | class TFileTree { |
| 39 | public: |
| 40 | TFileTree(char* const* argv, int options, int (*compar)(const FTSENT**, const FTSENT**)) { |
| 41 | Fts_ = yfts_open(argv, options, compar); |
| 42 | } |
| 43 | |
| 44 | ~TFileTree() { |
| 45 | yfts_close(Fts_); |
nothing calls this directly
no test coverage detected