summaryrefslogtreecommitdiff
path: root/TAO/tao/Service_Callbacks.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Service_Callbacks.cpp')
-rw-r--r--TAO/tao/Service_Callbacks.cpp85
1 files changed, 0 insertions, 85 deletions
diff --git a/TAO/tao/Service_Callbacks.cpp b/TAO/tao/Service_Callbacks.cpp
deleted file mode 100644
index f4b6f228d3a..00000000000
--- a/TAO/tao/Service_Callbacks.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-#include "Service_Callbacks.h"
-#include "ORB_Constants.h"
-#include "SystemException.h"
-#include "Environment.h"
-#include "Invocation_Utils.h"
-
-ACE_RCSID (tao,
- Service_Callbacks,
- "$Id$")
-
-TAO_Service_Callbacks::~TAO_Service_Callbacks (void)
-{
-}
-
-CORBA::Boolean
-TAO_Service_Callbacks::select_profile (TAO_MProfile * /*mprofile*/,
- TAO_Profile *& /*pfile*/)
-{
- return 0;
-}
-
-CORBA::Boolean
-TAO_Service_Callbacks::reselect_profile (TAO_Stub * /*stub*/,
- TAO_Profile *& /*pfile*/)
-{
- return 0;
-}
-
-
-CORBA::Boolean
-TAO_Service_Callbacks::object_is_nil (CORBA::Object_ptr /* obj */)
-{
- // We shouldn't be here at all. But in case if we are here,
- // something is wrong. So, we send a true for a is_nil () call
- return 1;
-}
-
-void
-TAO_Service_Callbacks::reset_profile_flags (void)
-{
- return;
-}
-
-
-TAO_Service_Callbacks::Profile_Equivalence
-TAO_Service_Callbacks::is_profile_equivalent (const TAO_Profile *,
- const TAO_Profile *)
-{
- return DONT_KNOW;
-}
-
-CORBA::ULong
-TAO_Service_Callbacks::hash_ft (TAO_Profile *,
- CORBA::ULong )
-{
- return 0;
-}
-
-TAO::Invocation_Status
-TAO_Service_Callbacks::raise_comm_failure (
- IOP::ServiceContextList &,
- TAO_Profile * /*profile*/
- ACE_ENV_ARG_DECL)
-{
- ACE_THROW_RETURN (CORBA::COMM_FAILURE (
- CORBA::SystemException::_tao_minor_code (
- TAO_INVOCATION_RECV_REQUEST_MINOR_CODE,
- -1),
- CORBA::COMPLETED_MAYBE),
- TAO::TAO_INVOKE_FAILURE);
-}
-
-TAO::Invocation_Status
-TAO_Service_Callbacks::raise_transient_failure (
- IOP::ServiceContextList &,
- TAO_Profile * /*profile*/
- ACE_ENV_ARG_DECL)
-{
- ACE_THROW_RETURN (CORBA::TRANSIENT (
- CORBA::SystemException::_tao_minor_code (
- TAO_INVOCATION_RECV_REQUEST_MINOR_CODE,
- -1),
- CORBA::COMPLETED_MAYBE),
- TAO::TAO_INVOKE_FAILURE);
-}