clang
6.0.0
|
Represents an open file. More...
#include "clang/Basic/VirtualFileSystem.h"
Public Member Functions | |
virtual | ~File () |
Destroy the file after closing it (if open). More... | |
virtual llvm::ErrorOr< Status > | status ()=0 |
Get the status of the file. More... | |
virtual llvm::ErrorOr< std::string > | getName () |
Get the name of the file. More... | |
virtual llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > | getBuffer (const Twine &Name, int64_t FileSize=-1, bool RequiresNullTerminator=true, bool IsVolatile=false)=0 |
Get the contents of the file as a MemoryBuffer . More... | |
virtual std::error_code | close ()=0 |
Closes the file. More... | |
Represents an open file.
Definition at line 101 of file VirtualFileSystem.h.
|
virtual |
Destroy the file after closing it (if open).
Sub-classes should generally call close() inside their destructors. We cannot do that from the base class, since close is virtual.
Definition at line 84 of file VirtualFileSystem.cpp.
|
pure virtual |
Closes the file.
|
pure virtual |
Get the contents of the file as a MemoryBuffer
.
|
inlinevirtual |
Get the name of the file.
Definition at line 112 of file VirtualFileSystem.h.
References clang::vfs::Status::getName().
|
pure virtual |
Get the status of the file.