comparison filestates.h @ 163:5c262ac73948

* First cut of work on merge/resolve logic
author Chris Cannam
date Fri, 03 Dec 2010 19:35:04 +0000
parents 5b2046f67a56
children f16fe0db11f3
comparison
equal deleted inserted replaced
162:910c2c5d1873 163:5c262ac73948
27 public: 27 public:
28 FileStates(); 28 FileStates();
29 29
30 enum State { 30 enum State {
31 31
32 Clean, 32 // These are in the order in which they want to be listed in
33 // the interface
34
33 Modified, 35 Modified,
34 Added, 36 Added,
37 Removed,
38 InConflict,
39 Missing,
40 Clean,
35 Unknown, 41 Unknown,
36 Removed,
37 Missing,
38 InConflict,
39 42
40 FirstState = Clean, 43 FirstState = Modified,
41 LastState = InConflict 44 LastState = Unknown
42 }; 45 };
43 46
44 void parseStates(QString text); 47 void parseStates(QString text);
45 48
46 void clearBuckets(); 49 void clearBuckets();