/** * Project : Mono * Namespace : System.Web.UI.MobileControls.Adapters * Class : HtmlMobileTextWriter * Author : Gaurav Vaish * * Copyright : 2003 with Gaurav Vaish, and with * Ximian Inc */ using System; using System.IO; using System.Web.Mobile; namespace System.Web.UI.MobileControls.Adapters { public class HtmlMobileTextWriter : MobileTextWriter { [MonoTODO] public HtmlMobileTextWriter(TextWriter writer, MobileCapabilities capabilities) : base(writer, capabilities) { throw new NotImplementedException(); } [MonoTODO] public void EnterStyle(System.Web.UI.MobileControls.Style style) { throw new NotImplementedException(); } } }