remove a crufty folder that's done nothing for quite a while...
[supercollider.git] / build / SCClassLibrary / JITLib / ProxySpace / extDispatch.sc
blob07c87a6fa5deec0383262d76813c46219bfbe0aa
1 + Object {
2         encodeForOSC {
3                 ^this.asCompileString.asSymbol
4         }
5         decodeFromOSC {
6                 ^this
7         }
10 + SimpleNumber {
11         encodeForOSC {
12                 ^this
13         }
16 + RawArray {
17         encodeForOSC {
18                 ^this   // this is a trick. the dispatcher sends the array flat.
19                                 // currently, sc cannot send arrays via OSC
20         }
22 + Symbol {
23         decodeFromOSC {
24                 ^this.asString.interpret;
25         }
28 + String {
29         encodeForOSC {
30                 ^this.asCompileString.asSymbol // otherwise string is indistinguishable
31         }
32         decodeFromOSC {
33                 ^this.interpret;
34         }