mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 13:05:49 +00:00
5b7aaf1c4f
* generator/*.cs : Kill DoGenerate. svn path=/trunk/gtk-sharp/; revision=18572
25 lines
482 B
C#
25 lines
482 B
C#
// GtkSharp.Generation.BoxedGen.cs - The Boxed Generatable.
|
|
//
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// (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 ()
|
|
{
|
|
base.Generate ();
|
|
Statistics.BoxedCount++;
|
|
}
|
|
}
|
|
}
|
|
|