cmake build system: visiblity support for clang
[supercollider.git] / SCClassLibrary / Common / Control / asGroup.sc
blob39de08df61cf8c15737b05e16524cbe277bf3d78
1 + AbstractGroup {
2         asGroup {}
5 + Nil {
6         asGroup {
7                 ^Group.basicNew(this, 1)
8         }
10 + Server {
11         asGroup {
12                 ^Group.basicNew(this, 1)
13         }
15 + Synth {
16         asGroup {
17                 ^this.group
18         }
20 + Integer {
21         asGroup {
22                 ^Group.basicNew(nil, this)
23         }