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

◆ fstream() [5/5]

fl::fstream::fstream ( fstream && other)
inline

Definition at line 334 of file fstream.h.

335 : mHandle(other.mHandle), mLastRead(other.mLastRead),
336 mGood(other.mGood), mEof(other.mEof), mFail(other.mFail),
337 mLocalError(other.mLocalError) {
338 other.mHandle.reset();
339 other.mLastRead = 0;
340 other.mGood = false;
341 other.mEof = false;
342 other.mFail = true;
343 other.mLocalError = 0;
344 }
bool mGood
Definition fstream.h:303
bool mEof
Definition fstream.h:304
filebuf_ptr mHandle
Definition fstream.h:301
bool mFail
Definition fstream.h:305
fl::size_t mLastRead
Definition fstream.h:302
int mLocalError
Definition fstream.h:306
void reset() FL_NOEXCEPT
Definition shared_ptr.h:286

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

+ Here is the call graph for this function: