summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams
diff options
context:
space:
mode:
authorelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-21 17:41:56 +0000
committerelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-21 17:41:56 +0000
commit104551a45f783db102f6f2104a77cb31ab658c4c (patch)
tree08849483df4aafc6aaac1a3abd5796f3b96d0216 /TAO/orbsvcs/tests/AVStreams
parent07bc42ab262b705a7b5c3efb8d5eef5b0502794b (diff)
downloadATCD-104551a45f783db102f6f2104a77cb31ab658c4c.tar.gz
ChangeLogTag: Wed Aug 21 12:41:51 2002 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/receiver.h4
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/sender.h8
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS/AVStreams_Simple_Two_Stage_With_QoS.mpc14
3 files changed, 14 insertions, 12 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/receiver.h b/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/receiver.h
index d117c273e90..70a4c428c40 100644
--- a/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/receiver.h
+++ b/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/receiver.h
@@ -83,8 +83,8 @@ public:
// Destructor.
int init (int argc,
- char **argv,
- CORBA::Environment &);
+ char **argv
+ ACE_ENV_ARG_DECL);
// Initialize data components.
protected:
diff --git a/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/sender.h b/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/sender.h
index 87b07bcb553..fdebfea64e0 100644
--- a/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/sender.h
+++ b/TAO/orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/sender.h
@@ -62,11 +62,11 @@ public:
// Constructor
int init (int argc,
- char **argv,
- CORBA::Environment&);
+ char **argv
+ ACE_ENV_ARG_DECL);
// Method to initialize the various data components.
- int pace_data (CORBA::Environment &);
+ int pace_data (ACE_ENV_SINGLE_ARG_DECL);
// Method to pace and send data from a file.
void protocol_object (TAO_AV_Protocol_Object *protocol_object);
@@ -76,7 +76,7 @@ private:
int parse_args (int argc, char **argv);
// Method to parse the command line arguments.
- int bind_to_receiver (CORBA::Environment& ACE_TRY_ENV);
+ int bind_to_receiver (ACE_ENV_ARG_DECL);
// Method that binds the sender to the receiver.
SENDER_ENDPOINT_STRATEGY endpoint_strategy_;
diff --git a/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS/AVStreams_Simple_Two_Stage_With_QoS.mpc b/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS/AVStreams_Simple_Two_Stage_With_QoS.mpc
index 70d14127c00..52c21d6ccf7 100644
--- a/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS/AVStreams_Simple_Two_Stage_With_QoS.mpc
+++ b/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS/AVStreams_Simple_Two_Stage_With_QoS.mpc
@@ -1,7 +1,8 @@
project(sender): avstreamsexe {
- depends += QoS
- libs += ACE_QoS
- exename = sender
+ depends += QoS
+ requires += rapi
+ libs += ACE_QoS
+ exename = sender
Source_Files {
sender.cpp
@@ -9,9 +10,10 @@ project(sender): avstreamsexe {
}
project(receiver): avstreamsexe {
- depends += QoS
- libs += ACE_QoS
- exename = receiver
+ depends += QoS
+ requires += rapi
+ libs += ACE_QoS
+ exename = receiver
Source_Files {
receiver.cpp