MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / createOutputStream

Method createOutputStream

JUCE/modules/juce_core/files/juce_File.cpp:736–744  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

734}
735
736std::unique_ptr<FileOutputStream> File::createOutputStream (size_t bufferSize) const
737{
738 auto fout = std::make_unique<FileOutputStream> (*this, bufferSize);
739
740 if (fout->openedOk())
741 return fout;
742
743 return nullptr;
744}
745
746//==============================================================================
747bool File::appendData (const void* const dataToAppend,

Callers 9

handlePopupMenuMethod · 0.45
exportComponentMethod · 0.45
WriterMethod · 0.45
runMethod · 0.45
runMethod · 0.45
startRecordingMethod · 0.45
showWindowMethod · 0.45
mainFunction · 0.45

Calls 1

openedOkMethod · 0.45

Tested by

no test coverage detected