summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/NodeApplication/Configurator_Factory.inl
blob: bde906ae6b5d9ec3788aa911644bd522466fda00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* -*- C++ -*- */
// $Id$

ACE_INLINE bool 
CIAO::NodeApplication_Options::use_callback ()
{
  return this->use_callback_; 
}

ACE_INLINE bool 
CIAO::NodeApplication_Options::rt_support () 
{
  return this->rt_support_; 
}

ACE_INLINE int 
CIAO::NodeApplication_Options::write_ior_file ()
{ 
  return (this->ior_output_filename_.length () != 0); 
}

ACE_INLINE const char *
CIAO::NodeApplication_Options::ior_output_filename ()
{ 
  return this->ior_output_filename_.c_str (); 
}

ACE_INLINE const char *
CIAO::NodeApplication_Options::callback_ior ()
{ 
  return this->callback_ior_.c_str (); 
}