summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/ConsumesDef_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/ConsumesDef_i.cpp')
-rw-r--r--TAO/orbsvcs/IFR_Service/ConsumesDef_i.cpp62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/orbsvcs/IFR_Service/ConsumesDef_i.cpp b/TAO/orbsvcs/IFR_Service/ConsumesDef_i.cpp
deleted file mode 100644
index 4bd7898c1e9..00000000000
--- a/TAO/orbsvcs/IFR_Service/ConsumesDef_i.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#include "Repository_i.h"
-#include "ConsumesDef_i.h"
-
-ACE_RCSID(IFR_Service, ConsumesDef_i, "$Id$")
-
-TAO_ConsumesDef_i::TAO_ConsumesDef_i (
- TAO_Repository_i *repo,
- ACE_Configuration_Section_Key section_key
- )
- : TAO_IRObject_i (repo, section_key),
- TAO_Contained_i (repo, section_key),
- TAO_EventDef_i (repo, section_key)
-{
-}
-
-TAO_ConsumesDef_i::~TAO_ConsumesDef_i (void)
-{
-}
-
-IR::DefinitionKind
-TAO_ConsumesDef_i::def_kind (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- return IR::dk_Consumes;
-}
-
-void
-TAO_ConsumesDef_i::destroy (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- TAO_IFR_WRITE_GUARD;
-
- this->destroy_i (ACE_TRY_ENV);
-}
-
-void
-TAO_ConsumesDef_i::destroy_i (CORBA::Environment & /* ACE_TRY_ENV */)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- // TODO
-}
-
-IR::Contained::Description *
-TAO_ConsumesDef_i::describe (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- TAO_IFR_READ_GUARD_RETURN (0);
-
- return this->describe_i (ACE_TRY_ENV);
-}
-
-IR::Contained::Description *
-TAO_ConsumesDef_i::describe_i (CORBA::Environment & /* ACE_TRY_ENV */)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- // TODO
- return 0;
-}
-