cmake build system: visiblity support for clang
[supercollider.git] / SCClassLibrary / Platform / osx / ApplicationStart.sc
blobd24dd13bd906a4e2d88b7e943d3e18bc75b843cc
1 ApplicationStart : StartUp {
2         classvar <>objects;
4         *run {
5                 this.objects.do({ arg item; item.doOnApplicationStart;  });
6         }
9 + Function {
10         doOnApplicationStart {
11                 this.try{|error|
12                                 "ApplicationStart: an error has occurred.".postln;
13                                 error.reportError;
14                                 "Thrown during function:".postln;
15                                 this.postcs;
16                 }
17         }