/src/LinFu.AOP/Interfaces/ITypeWeaver.cs
http://github.com/philiplaureano/LinFu · C# · 11 lines · 7 code · 1 blank · 3 comment · 0 complexity · 65edbb49a7ce1bae1fb16cd7ef3f2e49 MD5 · raw file
- using Mono.Cecil;
- namespace LinFu.AOP.Cecil.Interfaces
- {
- /// <summary>
- /// Represents a type that can modify an existing <see cref="TypeDefinition" />.
- /// </summary>
- public interface ITypeWeaver : IWeaver<TypeDefinition, ModuleDefinition>
- {
- }
- }