summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Factory/FactoryC_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Factory/FactoryC_impl.h')
-rw-r--r--TAO/tests/OBV/Factory/FactoryC_impl.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/TAO/tests/OBV/Factory/FactoryC_impl.h b/TAO/tests/OBV/Factory/FactoryC_impl.h
deleted file mode 100644
index 895d9fb808b..00000000000
--- a/TAO/tests/OBV/Factory/FactoryC_impl.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// -*- C++ -*-
-
-// ===================================================================
-/**
- * @file FactoryC_impl.h
- *
- * $Id$
- *
- * @author Boris Kolpackov <bosk@ipmce.ru>
- */
-// ===================================================================
-
-#ifndef TAO_FACTORY_FACTORY_C_IMPL_H
-#define TAO_FACTORY_FACTORY_C_IMPL_H
-
-#include "FactoryC.h"
-
-/**
- * @class Value2_impl
- *
- * @brief Value2 implementation.
- *
- * Implements the Value2 valuetype.
- *
- * @note Just need to mix-in RefCounter
- */
-class Value2_impl : public virtual OBV_OBV_FactoryTest::Value2,
- public virtual CORBA::DefaultValueRefCountBase
-{
-};
-
-/**
- * @class Value2_init_impl
- *
- * @brief OBV factory implementation.
- *
- * Implements the Value2 factory implementation.
- */
-class Value2_init_impl : public OBV_FactoryTest::Value2_init
-{
-public:
-
- virtual OBV_FactoryTest::Value2* create_default (
- CORBA::ULong id
- )
- ACE_THROW_SPEC ((
- CORBA::SystemException
- ));
-
- virtual OBV_FactoryTest::Value2* create (
- CORBA::ULong id,
- const OBV_FactoryTest::BaseValue::BV_Data & data
- )
- ACE_THROW_SPEC ((
- CORBA::SystemException
- ));
-
-public:
-
- virtual CORBA::ValueBase * create_for_unmarshal (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
-
-};
-
-#endif /* TAO_FACTORY_FACTORY_C_IMPL_H */