comparison qt/d2/qt/Signal.d @ 321:d458ed66e871 signals

minor stuff
author eldar_ins@eldar-laptop
date Sat, 26 Dec 2009 05:10:16 +0500
parents 5c6455c4889b
children 7c2cf27391c4
comparison
equal deleted inserted replaced
320:5c6455c4889b 321:d458ed66e871
24 24
25 public import 25 public import
26 std.typetuple, 26 std.typetuple,
27 std.traits, 27 std.traits,
28 std.conv, 28 std.conv,
29 std.string,
30 std.metastrings; 29 std.metastrings;
31 30
31 public import std.string : strip, toStringz;
32 32
33 /** The beast that takes string representation of function arguments 33 /** The beast that takes string representation of function arguments
34 * and returns an array of default values it doesn't check if arguments 34 * and returns an array of default values it doesn't check if arguments
35 * without default values follow the arguments with default values for 35 * without default values follow the arguments with default values for
36 * simplicity. It is done by mixing in an delegate alias. 36 * simplicity. It is done by mixing in an delegate alias.