MCPcopy Create free account
hub / github.com/audacity/audacity / OpenOut

Function OpenOut

libraries/lib-wx-init/JournalOutput.cpp:33–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33bool OpenOut( const wxString &fullPath )
34{
35 sFileOut.Open( fullPath );
36 if ( sFileOut.IsOpened() )
37 sFileOut.Clear();
38 else {
39 sFileOut.Create();
40 sFileOut.Open( fullPath );
41 }
42 return sFileOut.IsOpened();
43}
44
45void Output( const wxString &string )
46{

Callers 1

BeginFunction · 0.85

Calls 4

IsOpenedMethod · 0.80
OpenMethod · 0.45
ClearMethod · 0.45
CreateMethod · 0.45

Tested by

no test coverage detected