Add routing infrastructure.

This commit is contained in:
Tristan Hume 2015-04-30 19:22:08 -04:00
parent 9a73bcaad2
commit e370a57a42
3 changed files with 137 additions and 4 deletions

View file

@ -64,6 +64,8 @@ string typeSig(T)() if(canDBus!T) {
return "d";
} else static if(is(T == string)) {
return "s";
} else static if(is(T == void)) {
return "";
} else static if(isTuple!T) {
string sig = "(";
foreach(i, S; T.Types) {