1 : //==============================================================================
2 : // File <$/src/cpp/prod/poa/ServantBase.cpp>
3 : // This file is part of YaOrb : Yet Another Object Request Broker,
4 : // Copyright (c) 2000-2003, Marc Alff.
5 : //
6 : // This program is free software; you can redistribute it and/or
7 : // modify it under the terms of the GNU General Public License
8 : // as published by the Free Software Foundation; either version 2
9 : // of the License, or (at your option) any later version.
10 : //
11 : // This program is distributed in the hope that it will be useful,
12 : // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : // GNU General Public License for more details.
15 : //
16 : // You should have received a copy of the GNU General Public License
17 : // along with this program; if not, write to the Free Software
18 : // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 : //
20 : //==============================================================================
21 :
22 : #include <yaorb/CORBA.h>
23 : #include <stdio.h>
24 :
25 10 : PortableServer::ServantBase::ServantBase()
26 : {
27 10 : NON_DEV("ServantBase") ;
28 : }
29 :
30 9 : PortableServer::ServantBase::~ServantBase()
31 : {
32 9 : NON_DEV("ServantBase") ;
33 0 : }
34 :
35 : PortableServer::POA_ptr
36 0 : PortableServer::ServantBase::_default_POA()
37 : {
38 0 : NON_DEV("ServantBase") ;
39 : return NULL ;
40 : }
41 :
42 : CORBA::InterfaceDef_ptr
43 : PortableServer::ServantBase::_get_interface()
44 0 : throw(CORBA::SystemException)
45 : {
46 0 : NON_DEV("ServantBase") ;
47 : return NULL ;
48 : }
49 :
50 : CORBA::Boolean
51 : PortableServer::ServantBase::_is_a(const char* logical_type_id)
52 0 : throw(CORBA::SystemException)
53 : {
54 0 : NON_DEV("ServantBase") ;
55 : return false ;
56 : }
57 :
58 : CORBA::Boolean
59 : PortableServer::ServantBase::_non_existent(void)
60 0 : throw(CORBA::SystemException)
61 : {
62 0 : NON_DEV("ServantBase") ;
63 : return false ;
64 : }
65 :
66 : void
67 0 : PortableServer::ServantBase::_add_ref(void)
68 : {
69 0 : NON_DEV("ServantBase") ;
70 : }
71 :
72 : void
73 0 : PortableServer::ServantBase::_remove_ref(void)
74 : {
75 0 : NON_DEV("ServantBase") ;
76 : }
77 :
|