generator: Add using statements in generated code for generics

This commit is contained in:
Bertrand Lorentz 2012-11-03 17:00:52 +01:00
parent f748be34c1
commit 687e986c55
3 changed files with 3 additions and 0 deletions

View File

@ -141,6 +141,7 @@ namespace GtkSharp.Generation {
sw.WriteLine ();
sw.WriteLine ("\tusing System;");
sw.WriteLine ("\tusing System.Collections;");
sw.WriteLine ("\tusing System.Collections.Generic;");
sw.WriteLine ("\tusing System.Runtime.InteropServices;");
sw.WriteLine ();

View File

@ -51,6 +51,7 @@ namespace GtkSharp.Generation {
sw.WriteLine ();
sw.WriteLine ("\tusing System;");
sw.WriteLine ("\tusing System.Collections;");
sw.WriteLine ("\tusing System.Collections.Generic;");
sw.WriteLine ("\tusing System.Runtime.InteropServices;");
sw.WriteLine ();

View File

@ -200,6 +200,7 @@ namespace GtkSharp.Generation {
sw.WriteLine ();
sw.WriteLine ("\tusing System;");
sw.WriteLine ("\tusing System.Collections;");
sw.WriteLine ("\tusing System.Collections.Generic;");
sw.WriteLine ("\tusing System.Runtime.InteropServices;");
sw.WriteLine ();