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

◆ ofstream() [5/5]

fl::ofstream::ofstream ( ofstream && other)
inline

Definition at line 241 of file fstream.h.

242 : mHandle(other.mHandle), mGood(other.mGood), mEof(other.mEof),
243 mFail(other.mFail), mLocalError(other.mLocalError) {
244 other.mHandle.reset();
245 other.mGood = false;
246 other.mEof = false;
247 other.mFail = true;
248 other.mLocalError = 0;
249 }
int mLocalError
Definition fstream.h:213
filebuf_ptr mHandle
Definition fstream.h:209
void reset() FL_NOEXCEPT
Definition shared_ptr.h:286

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

+ Here is the call graph for this function: