From da70cd4b9ad8361cca82285467df2a26780efce5 Mon Sep 17 00:00:00 2001 From: Kevin Glynn Date: Thu, 15 Jul 2010 14:17:20 -0500 Subject: [PATCH] move templates into CLR directory (not C# specific) --- .../antlr3/src/cs2j/{CSharp => CLR}/TranslationTemplate.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename CSharpTranslator/antlr3/src/cs2j/{CSharp => CLR}/TranslationTemplate.cs (95%) diff --git a/CSharpTranslator/antlr3/src/cs2j/CSharp/TranslationTemplate.cs b/CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs similarity index 95% rename from CSharpTranslator/antlr3/src/cs2j/CSharp/TranslationTemplate.cs rename to CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs index 6b171af..35536b6 100644 --- a/CSharpTranslator/antlr3/src/cs2j/CSharp/TranslationTemplate.cs +++ b/CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs @@ -261,13 +261,13 @@ namespace RusticiSoftware.Translator.CLR switch (reader.LocalName) { case "Class": - typeType = "RusticiSoftware.Translator.ClassRepTemplate"; + typeType = "RusticiSoftware.Translator.CLR.ClassRepTemplate"; break; case "Interface": - typeType = "RusticiSoftware.Translator.InterfaceRepTemplate"; + typeType = "RusticiSoftware.Translator.CLR.InterfaceRepTemplate"; break; case "Enum": - typeType = "RusticiSoftware.Translator.EnumRepTemplate"; + typeType = "RusticiSoftware.Translator.CLR.EnumRepTemplate"; break; default: typeType = "UnknownType";