using SharpGen.CppModel; using SharpGen.Model; using System; using System.Collections.Generic; using System.Text; namespace SharpGen.Transform { public interface ITransformPreparer where TCppElement: CppElement where TCsElement : CsBase { TCsElement Prepare(TCppElement cppElement); } }