// GtkSharp.Generation.BoxedGen.cs - The Boxed Generatable. // // Author: Mike Kestner // // (c) 2001 Mike Kestner namespace GtkSharp.Generation { using System; using System.IO; using System.Xml; public class BoxedGen : StructBase, IGeneratable { public BoxedGen (XmlElement ns, XmlElement elem) : base (ns, elem) {} public override void Generate () { if (!DoGenerate) return; base.Generate (); Statistics.BoxedCount++; } } }