1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
cs2j/CSharpTranslator/antlr3/UpdateTxFiles/UpdateTranslationTemplate.cs
2011-01-03 11:11:31 -06:00

21 lines
388 B
C#

using System;
using RusticiSoftware.Translator;
using OldT = RusticiSoftware.Translator.TypeRepTemplate;
using NewT = RusticiSoftware.Translator.CLR.TypeRepTemplate;
namespace UpdateTxFiles
{
public class UpdateTranslationTemplate {
public UpdateTranslationTemplate ()
{
}
public NewT upgrade (OldT inTemplate)
{
throw new System.NotImplementedException ();
}
}
}