Minor style changes
[castle.git] / MonoRail / Castle.MonoRail.Views.Brail / IDslLanguageExtension.cs
blobf0e11b86de03b4ff6d82da2d9dc74b4637f66221
1 using System.Collections;
2 using Boo.Lang;
4 namespace Castle.MonoRail.Views.Brail
6 public interface IDslLanguageExtension
8 void Tag(string name);
9 void Tag(string name, ICallable block);
10 void Tag(string name, IDictionary attributes, ICallable block);
12 void Flush();