FastLED 3.9.15
Loading...
Searching...
No Matches

◆ ifstream() [5/5]

fl::ifstream::ifstream ( ifstream && other)
inline

Definition at line 82 of file fstream.h.

83 : mHandle(other.mHandle), mLastRead(other.mLastRead),
84 mGood(other.mGood), mEof(other.mEof), mFail(other.mFail) {
85 other.mHandle.reset();
86 other.mLastRead = 0;
87 other.mGood = false;
88 other.mEof = false;
89 other.mFail = true;
90 }
filebuf_ptr mHandle
Definition fstream.h:50
bool mEof
Definition fstream.h:53
fl::size_t mLastRead
Definition fstream.h:51
bool mFail
Definition fstream.h:54
bool mGood
Definition fstream.h:52
void reset() FL_NOEXCEPT
Definition shared_ptr.h:286

References ifstream(), FL_NOEXCEPT, mEof, mFail, mGood, mHandle, and mLastRead.

+ Here is the call graph for this function: