Files
reswcodegen/RESW File Code Generator/ReswCodeGen.Core/CodeGeneratorFactory.cs
T
Christian Resma Helle 79fe714b5b initial commit
2012-11-06 23:37:40 +01:00

11 lines
227 B
C#

namespace ReswCodeGen.Core
{
public class CodeGeneratorFactory
{
public ICodeGenerator Create(string defaultNamespace, string inputFileContents)
{
return null;
}
}
}