Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > by-pkgid > c666225e9320ba81ae98e96d07a5fcf5 > files > 22

gtk-sharp2-doc-2.12.9-1mdv2010.0.i586.rpm

using System;

namespace GtkDemo
{
	[AttributeUsage (AttributeTargets.Class)]
	public class DemoAttribute : Attribute
	{
		string label, filename, parent;

		public DemoAttribute (string label, string filename) : this (label, filename, null)
		{
		}

		public DemoAttribute (string label, string filename, string parent)
		{
			this.label = label;
			this.filename = filename;
			this.parent = parent;
		}

		public string Filename {
			get { return filename; }
		}

		public string Label {
			get { return label; }
		}

		public string Parent {
			get { return parent; }
		}
	}
}