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