summaryrefslogtreecommitdiff
path: root/TAO/tests
diff options
context:
space:
mode:
authormk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-09 15:37:29 +0000
committermk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-09 15:37:29 +0000
commit18e6e20a62dd370b4cdd171b38fd39924a19e61e (patch)
tree8f12b842b36ae79c4940a56a0167ea19b1cdb2df /TAO/tests
parent0e29843705de95a8678fff2e2d7c3ea1557a044c (diff)
downloadATCD-18e6e20a62dd370b4cdd171b38fd39924a19e61e.tar.gz
The Quoter inherits now from the LifeCycleObject. No implementations yet!
Diffstat (limited to 'TAO/tests')
-rw-r--r--TAO/tests/Quoter/quoter.idl2
-rw-r--r--TAO/tests/Quoter/quoter_impl.cpp18
-rw-r--r--TAO/tests/Quoter/quoter_impl.h13
3 files changed, 32 insertions, 1 deletions
diff --git a/TAO/tests/Quoter/quoter.idl b/TAO/tests/Quoter/quoter.idl
index bee836d0297..c7f1f1b69de 100644
--- a/TAO/tests/Quoter/quoter.idl
+++ b/TAO/tests/Quoter/quoter.idl
@@ -19,7 +19,7 @@ module Stock
exception Invalid_Stock {};
exception Invalid_Quoter {};
- interface Quoter
+ interface Quoter : CosLifeCycle::LifeCycleObject
{
// = TITLE
// Access Stock information.
diff --git a/TAO/tests/Quoter/quoter_impl.cpp b/TAO/tests/Quoter/quoter_impl.cpp
index fd93cf30277..2c992dd91ad 100644
--- a/TAO/tests/Quoter/quoter_impl.cpp
+++ b/TAO/tests/Quoter/quoter_impl.cpp
@@ -72,4 +72,22 @@ void Quoter_Impl::destroy (CORBA::Environment &env)
+CosLifeCycle::LifeCycleObject_ptr
+Quoter_Impl::copy (CosLifeCycle::FactoryFinder_ptr there,
+ const CosLifeCycle::Criteria & the_criteria,
+ CORBA::Environment &_tao_environment) {
+ return 0;
+}
+
+void
+Quoter_Impl::move (CosLifeCycle::FactoryFinder_ptr there,
+ const CosLifeCycle::Criteria & the_criteria,
+ CORBA::Environment &_tao_environment) {
+
+}
+
+void
+Quoter_Impl::remove (CORBA::Environment &_tao_environment) {
+
+}
diff --git a/TAO/tests/Quoter/quoter_impl.h b/TAO/tests/Quoter/quoter_impl.h
index 6adf9fbcb81..186d23f3d88 100644
--- a/TAO/tests/Quoter/quoter_impl.h
+++ b/TAO/tests/Quoter/quoter_impl.h
@@ -43,6 +43,19 @@ public:
CORBA::Environment &env);
virtual void destroy (CORBA_Environment &env);
+
+ virtual CosLifeCycle::LifeCycleObject_ptr copy (
+ CosLifeCycle::FactoryFinder_ptr there,
+ const CosLifeCycle::Criteria & the_criteria,
+ CORBA::Environment &_tao_environment);
+
+ virtual void move (
+ CosLifeCycle::FactoryFinder_ptr there,
+ const CosLifeCycle::Criteria & the_criteria,
+ CORBA::Environment &_tao_environment);
+
+ virtual void remove (
+ CORBA::Environment &_tao_environment);
};
class Quoter_Factory_Impl;