01-26-2007 09:22 AM
01-26-2007 09:54 AM
Personally, I use an enum typedef to hold all possible states. This way I can just select from a dropdown list in each case to pick the possibilities of the next case, and if I want to add or change a case, I can just change the typedef without worrying about changing every instance of it. The queue could be useful if you had a situation where you needed to queue up several states to run, but I've never come across a situation where I would need that.
However, if this is for your CLD, I say do whatever is comfortable to you. You don't want to try something that you're not used to in a time critical situation like that.
01-26-2007 12:07 PM - edited 01-26-2007 12:07 PM

Message Edited by altenbach on 01-26-2007 10:08 AM
01-26-2007 12:16 PM
01-26-2007 01:03 PM
01-26-2007 01:48 PM
01-26-2007 02:01 PM
01-26-2007 02:15 PM
01-29-2007 07:26 AM
01-29-2007 09:30 AM