Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > b023782c10b0959fe8e660475b5ade45 > files > 21

gtk-sharp2-doc-2.12.0-1mdv2008.1.x86_64.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; }
		}
	}
}