Rev 1048 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1048 | Rev 1049 | ||
|---|---|---|---|
| Line 65... | Line 65... | ||
| 65 | unsigned int getStartBit() { return myStartBit; }; |
65 | unsigned int getStartBit() { return myStartBit; }; |
| 66 | void setStartBit(int startBit) { myStartBit = startBit; }; |
66 | void setStartBit(int startBit) { myStartBit = startBit; }; |
| 67 | 67 | ||
| 68 | string getEnumIdValue() |
68 | string getEnumIdValue() |
| 69 | { |
69 | { |
| 70 |
|
70 | if (myEnumValues.find(myValue) != myEnumValues.end()) |
| 71 | { |
71 | { |
| 72 |
|
72 | return myEnumValues[myValue]; |
| 73 | { |
- | |
| 74 | return iter->first; |
- | |
| 75 | } |
- | |
| 76 | } |
73 | } |
| 77 | 74 | ||
| 78 | return ""; |
75 | return ""; |
| 79 | } |
76 | } |
| 80 | 77 | ||