using System; using System.Collections.Generic; using System.Text; namespace OSGeo.MapGuide.Viewer { /// /// A toolbar that contains a default set of viewer commands /// public interface IDefaultToolbar { /// /// Gets or sets the viewer this toolbar is associated with /// IMapViewer Viewer { get; set; } } }