Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ProcessThreadDesigner.cs « System.Diagnostics.Design « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8a0edd4f12652c7fa2d9558f2aba05979f1cb5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// System.Diagnostics.Design.ProcessThreadDesigner
//
// Authors:
//      Gert Driesen (drieseng@users.sourceforge.net)
//
// (C) 2004 Novell
//

using System.Collections;
using System.ComponentModel.Design;

namespace System.Diagnostics.Design
{
	public class ProcessThreadDesigner : ComponentDesigner
	{
		public ProcessThreadDesigner ()
		{
		}

		[MonoTODO]
		protected override void PreFilterProperties (IDictionary properties)
		{
			throw new NotImplementedException ();
		}
	}
}