External/Aga.Controls/Threading/WorkItemStatus.cs
changeset 345 0c551e8818e0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/External/Aga.Controls/Threading/WorkItemStatus.cs	Sun May 27 15:16:19 2012 +0000
     1.3 @@ -0,0 +1,14 @@
     1.4 +using System;
     1.5 +using System.Collections.Generic;
     1.6 +using System.Text;
     1.7 +
     1.8 +namespace Aga.Controls.Threading
     1.9 +{
    1.10 +	public enum WorkItemStatus 
    1.11 +	{ 
    1.12 +		Completed, 
    1.13 +		Queued, 
    1.14 +		Executing, 
    1.15 +		Aborted 
    1.16 +	}
    1.17 +}