| 19 | * @brief Default constructor creating an uninitialized file object. |
| 20 | */ |
| 21 | KittyIOFile() : _fd(-1), _flags(0), _mode(0), _error(0) |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * @brief Constructs a new KittyIOFile object with file path, flags, and optional mode. |
nothing calls this directly
no outgoing calls
no test coverage detected