Ryujinx-GtkSharp/generator/StructGen.cs
Mike Kestner 5b7aaf1c4f 2003-10-03 Mike Kestner <mkestner@ximian.com>
* generator/*.cs : Kill DoGenerate.

svn path=/trunk/gtk-sharp/; revision=18572
2003-10-03 22:20:40 +00:00

25 lines
490 B
C#

// GtkSharp.Generation.StructGen.cs - The Structure Generatable.
//
// Author: Mike Kestner <mkestner@speakeasy.net>
//
// (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 ()
{
base.Generate ();
Statistics.StructCount++;
}
}
}