moel@345: using System;
moel@345: using System.Collections.Generic;
moel@345: using System.Text;
moel@345: 
moel@345: namespace Aga.Controls.Threading
moel@345: {
moel@345: 	public enum WorkItemStatus 
moel@345: 	{ 
moel@345: 		Completed, 
moel@345: 		Queued, 
moel@345: 		Executing, 
moel@345: 		Aborted 
moel@345: 	}
moel@345: }