summaryrefslogtreecommitdiff
path: root/TAO/tests/ior_corbaloc/status_i.cpp
blob: d645e7c0170505b51c1b4edb701a4d737e110f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

#include "status_i.h"

corbaloc_Status_i::corbaloc_Status_i (TAO_ENV_ARG_DECL_NOT_USED)
        : server_name_()
{
  // Constructor
}

CORBA::Boolean
corbaloc_Status_i::print_status (TAO_ENV_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException))
{

  // If the server received the request from the client,
  // return true == 0;
  ACE_DEBUG((LM_DEBUG,
             "Invoking print_status() method for servant with name: %s\nregistered in Naming Service\n",

              server_name_.c_str() ));
  return 0;
}