MCPcopy Create free account
hub / github.com/Tracktion/choc / main

Function main

examples/midi_file_processing.cpp:147–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145}
146
147int main()
148{
149 std::cout << "CHOC MIDI File Processing Example\n";
150 std::cout << "=================================\n";
151
152 try
153 {
154 demonstrateMIDINoteUtilities();
155 demonstrateMIDIMessageConstruction();
156 createSimpleMIDISequence();
157 demonstrateMIDIFileIO();
158
159 std::cout << "\n=== All demonstrations completed successfully! ===\n";
160 }
161 catch (const std::exception& e)
162 {
163 std::cout << "Error: " << e.what() << "\n";
164 return 1;
165 }
166
167 return 0;
168}

Callers

nothing calls this directly

Calls 5

createSimpleMIDISequenceFunction · 0.85
demonstrateMIDIFileIOFunction · 0.85
whatMethod · 0.80

Tested by

no test coverage detected