Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / IView.cs
1 namespace System.Web.Mvc {
2     using System.IO;
3
4     public interface IView {
5         void Render(ViewContext viewContext, TextWriter writer);
6     }
7 }