From b8be47ca5b763b3253ca9a0a55b45bc088f17b85 Mon Sep 17 00:00:00 2001 From: thrall Date: Mon, 6 Sep 2004 22:30:23 +0000 Subject: Made Start/StopCondition enums named --- TAO/orbsvcs/examples/RtEC/ECConfigurator/SyntaxTree.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/TAO/orbsvcs/examples/RtEC/ECConfigurator/SyntaxTree.h b/TAO/orbsvcs/examples/RtEC/ECConfigurator/SyntaxTree.h index 0322ddf9908..2b87e77861e 100644 --- a/TAO/orbsvcs/examples/RtEC/ECConfigurator/SyntaxTree.h +++ b/TAO/orbsvcs/examples/RtEC/ECConfigurator/SyntaxTree.h @@ -204,7 +204,7 @@ public: // Attributes ACE_CString name; - RtEventChannelAdmin::Event_Type type; // TODO: handle Event::type + RtEventChannelAdmin::Event_Type type; }; class Criticality : public VisitableSyntax @@ -440,7 +440,7 @@ public: // Attributes ACE_CString name; - RtEventChannelAdmin::EventSourceID id; // TODO: handle Supplier::id + RtEventChannelAdmin::EventSourceID id; }; class Publications : public VisitableSyntax @@ -528,9 +528,10 @@ public: Time *time; // Attributes - enum { GLOBALTIME, - DELAYAFTERSTART, - DELAYAFTERCONNECT } type; + typedef enum { GLOBALTIME, + DELAYAFTERSTART, + DELAYAFTERCONNECT } TYPE; + TYPE type; bool master; }; @@ -555,8 +556,9 @@ public: Value *value; // Attributes - enum { DURATION, - EVENTNUMBER } type; + typedef enum { DURATION, + EVENTNUMBER } TYPE; + TYPE type; }; // String value elements -- cgit v1.2.1