2002-07-26 06:08:52 +00:00
|
|
|
// GtkSharp.Generation.BoxedGen.cs - The Boxed Generatable.
|
2002-01-17 00:26:46 +00:00
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
2002-07-26 06:08:52 +00:00
|
|
|
// (c) 2001 Mike Kestner
|
2002-01-17 00:26:46 +00:00
|
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
public class BoxedGen : StructBase, IGeneratable {
|
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
public BoxedGen (XmlElement ns, XmlElement elem) : base (ns, elem) {}
|
2002-01-17 00:26:46 +00:00
|
|
|
|
2003-10-05 00:20:17 +00:00
|
|
|
public void Generate ()
|
2002-02-08 23:56:27 +00:00
|
|
|
{
|
2003-10-05 00:20:17 +00:00
|
|
|
GenerationInfo gen_info = new GenerationInfo (NSElem);
|
|
|
|
Generate (gen_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Generate (GenerationInfo gen_info)
|
|
|
|
{
|
|
|
|
base.Generate (gen_info);
|
2002-02-19 03:12:47 +00:00
|
|
|
Statistics.BoxedCount++;
|
2002-01-17 00:26:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|