log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
pub
>
ImplabNet
annotate Implab/PromiseState.cs @ 28:
81708975d6f7
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
fixes
author
cin
date
Mon, 03 Mar 2014 09:00:23 +0400
parents
7ea9363fef6c
children
Ignore whitespace changes -
Everywhere:
Within whitespace:
At end of lines:
rev
line source
7
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
1
using System;
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
2
using System.Collections.Generic;
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
3
using System.Linq;
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
4
using System.Text;
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
5
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
6
namespace Implab
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
7
{
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
8
public enum PromiseState
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
9
{
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
10
Unresolved,
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
11
Resolved,
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
12
Cancelled,
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
13
Rejected
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
14
}
7ea9363fef6c
inital progress handling
cin
parents:
diff
changeset
15
}