summaryrefslogtreecommitdiff
path: root/ace/Service_Gestalt.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Service_Gestalt.inl')
-rw-r--r--ace/Service_Gestalt.inl64
1 files changed, 0 insertions, 64 deletions
diff --git a/ace/Service_Gestalt.inl b/ace/Service_Gestalt.inl
deleted file mode 100644
index 9897b83c681..00000000000
--- a/ace/Service_Gestalt.inl
+++ /dev/null
@@ -1,64 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-
-// This is the primary entry point into the ACE_Service_Config (the
-// constructor just handles simple initializations).
-
-ACE_INLINE int
-ACE_Service_Gestalt::open (const ACE_TCHAR program_name[],
- const ACE_TCHAR *logger_key,
- int ignore_static_svcs,
- int ignore_default_svc_conf,
- int ignore_debug_flag)
-{
- ACE_TRACE ("ACE_Service_Gestalt::open");
- this->no_static_svcs_ = ignore_static_svcs;
-
- return this->open_i (program_name,
- logger_key,
- ignore_static_svcs,
- ignore_default_svc_conf,
- ignore_debug_flag);
-}
-
-ACE_INLINE int
-ACE_Service_Gestalt::open (int argc,
- ACE_TCHAR *argv[],
- const ACE_TCHAR *logger_key,
- int ignore_static_svcs,
- int ignore_default_svc_conf,
- int ignore_debug_flag)
-{
- ACE_TRACE ("ACE_Service_Gestalt::open");
- this->no_static_svcs_ = ignore_static_svcs;
-
- if (this->parse_args_i (argc,
- argv) == -1)
- return -1;
- else
- return this->open_i (argv == 0 ? 0 : argv[0],
- logger_key,
- ignore_static_svcs,
- ignore_default_svc_conf,
- ignore_debug_flag);
-}
-
-/// Searches for a service object declaration in the local repo, only
-
-ACE_INLINE int
-ACE_Service_Gestalt::find (const ACE_TCHAR name[],
- const ACE_Service_Type **srp,
- int ignore_suspended) const
-{
- ACE_ASSERT (this->repo_ != 0);
- return this->repo_->find (name, srp, ignore_suspended);
-}
-
-
-
-ACE_END_VERSIONED_NAMESPACE_DECL