summaryrefslogtreecommitdiff
path: root/TAO/tao/Tagged_Components.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-27 01:38:51 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-27 01:38:51 +0000
commit5b0cb22699b2fd8446329ce24fe6842b761191d9 (patch)
tree93904b4aa5848b8bcd58958e81ecbb4223da2f22 /TAO/tao/Tagged_Components.h
parent3f78ee5939dec693fdf68046bda2e011b286fad9 (diff)
downloadATCD-5b0cb22699b2fd8446329ce24fe6842b761191d9.tar.gz
ChangeLogTag:Thu Aug 26 20:34:54 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Tagged_Components.h')
-rw-r--r--TAO/tao/Tagged_Components.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/TAO/tao/Tagged_Components.h b/TAO/tao/Tagged_Components.h
index b3517be0db2..7439943316f 100644
--- a/TAO/tao/Tagged_Components.h
+++ b/TAO/tao/Tagged_Components.h
@@ -74,13 +74,11 @@ public:
// if the component is not present.
// = TAO specific components
- void set_tao_priority_range (CORBA::Short min_priority,
- CORBA::Short max_priority);
- // The the TAO_TAG_PRIORITY_RANGE component value.
+ void set_tao_priority (CORBA::Short priority);
+ // The the TAO_TAG_PRIORITY component value.
- int get_tao_priority_range (CORBA::Short& min_priority,
- CORBA::Short& max_priority) const;
- // Gets the TAO_TAG_PRIORITY_RANGE component value.
+ int get_tao_priority (CORBA::Short& min_priority) const;
+ // Gets the TAO_TAG_PRIORITY component value.
// = Generic components
@@ -132,18 +130,17 @@ private:
CONV_FRAME::CodeSetComponentInfo code_sets_;
// The ORB_TYPE component value
- CORBA::Short tao_priority_min_;
- CORBA::Short tao_priority_max_;
- // The TAO_PRIORITY_RANGE priorities
+ CORBA::Short tao_priority_;
+ // The TAO_PRIORITY priorities
IOP::MultipleComponentProfile components_;
// The rest of the components, to be compliant we cannot drop a
// bunch of them.
// A flag for each component...
- unsigned int orb_type_set_ : 1;
- unsigned int code_sets_set_ : 1;
- unsigned int tao_priority_range_set_ : 1;
+ CORBA::Octet orb_type_set_;
+ CORBA::Octet code_sets_set_;
+ CORBA::Octet tao_priority_set_;
};
#if defined (__ACE_INLINE__)