/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

  1. namespace Rhino.Etl.Dsl.Macros
  2. {
  3. using System;
  4. using Rhino.Etl.Core.ConventionOperations;
  5. using Rhino.Etl.Core.Operations;
  6. /// <summary>
  7. /// Create a new <see cref="InputCommandOperation"/> and instantiate it in place of the
  8. /// macro
  9. /// </summary>
  10. public class InputMacro : AbstractClassGeneratorMacro<ConventionInputCommandOperation>
  11. {
  12. /// <summary>
  13. /// Initializes a new instance of the <see cref="InputMacro"/> class.
  14. /// </summary>
  15. public InputMacro() : base(null)
  16. {
  17. }
  18. }
  19. }