summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Pluggable/PP_Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Pluggable/PP_Test.idl')
-rw-r--r--TAO/performance-tests/Pluggable/PP_Test.idl31
1 files changed, 0 insertions, 31 deletions
diff --git a/TAO/performance-tests/Pluggable/PP_Test.idl b/TAO/performance-tests/Pluggable/PP_Test.idl
deleted file mode 100644
index ed5301c4781..00000000000
--- a/TAO/performance-tests/Pluggable/PP_Test.idl
+++ /dev/null
@@ -1,31 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-interface Pluggable_Test
-{
- // = TITLE
- // Defines an interface that encapsulates operations designed to
- // test the TAO Pluggable Protocols implementation.
- //
- // = DESCRIPTION
- // This interface encapsulates operations that send
- // octets, voids, and octet sequences.
-
- oneway void send_oneway ();
- // Test the basic latency of a nil oneway operation.
-
- void send_void ();
- // Test the basic latency of a nil operation.
-
- oneway void shutdown ();
- // shutdown the application.
-
-};
-
-interface Pluggable_Test_Factory
-{
- // = TITLE
- // Creates Pluggable_Test objects.
-
- Pluggable_Test make_pluggable_test ();
-};