using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Represents painter for CheckBoxItem.
    /// 
    internal class CheckBoxItemPainter
    {
        /// 
        /// Paints CheckBoxItem.
        /// 
        /// Provides arguments for the operation.
        public virtual void Paint(CheckBoxItemRenderEventArgs e) { }
    }
}