/Rhino.Etl.Dsl/Macros/InputMacro.cs
http://github.com/ayende/rhino-etl · C# · 20 lines · 12 code · 1 blank · 7 comment · 0 complexity · bf2f85a26471809733e7875dfd7f36f9 MD5 · raw file
- namespace Rhino.Etl.Dsl.Macros
- {
- using System;
- using Rhino.Etl.Core.ConventionOperations;
- using Rhino.Etl.Core.Operations;
- /// <summary>
- /// Create a new <see cref="InputCommandOperation"/> and instantiate it in place of the
- /// macro
- /// </summary>
- public class InputMacro : AbstractClassGeneratorMacro<ConventionInputCommandOperation>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="InputMacro"/> class.
- /// </summary>
- public InputMacro() : base(null)
- {
- }
- }
- }