blob: f14659e6d928a36703f6d98cc74d68f1c6583e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -*- C++ -*- */
// $Id$
// Service_Config.i
// This is the primary entry point into the ACE_Service_Config (the
// constructor just handles simple initializations).
ACE_INLINE int
ACE_Service_Config::open (int argc, char *argv[])
{
ACE_TRACE ("ACE_Service_Config::open");
ACE_Service_Config::parse_args (argc, argv);
return ACE_Service_Config::open (argv[0]);
}
// Compare two service descriptors for equality.
ACE_INLINE int
ACE_Static_Svc_Descriptor::operator== (struct ACE_Static_Svc_Descriptor &d) const
{
return ACE_OS::strcmp (name_, d.name_) == 0;
}
|