| 90 | std::shared_ptr<File>& getFile() { return openFileState->file; }; |
| 91 | |
| 92 | off_t getPosition() const { return openFileState->position; }; |
| 93 | void setPosition(off_t pos) { openFileState->position = pos; }; |
| 94 | |
| 95 | oflags_t getFlags() const { return openFileState->flags; }; |
no outgoing calls
no test coverage detected