summaryrefslogtreecommitdiff
path: root/ACEXML/examples/svcconf/Svcconf_Handler.i
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/examples/svcconf/Svcconf_Handler.i')
-rw-r--r--ACEXML/examples/svcconf/Svcconf_Handler.i14
1 files changed, 14 insertions, 0 deletions
diff --git a/ACEXML/examples/svcconf/Svcconf_Handler.i b/ACEXML/examples/svcconf/Svcconf_Handler.i
index 48038ddf93a..637778485a4 100644
--- a/ACEXML/examples/svcconf/Svcconf_Handler.i
+++ b/ACEXML/examples/svcconf/Svcconf_Handler.i
@@ -4,6 +4,7 @@ ACE_INLINE
ACE_Parsed_Info::ACE_Parsed_Info ()
: name_ (0),
service_type_ (INVALID_TYPE),
+ active_ (1),
path_ (0),
init_func_ (0),
init_params_ (0)
@@ -54,6 +55,19 @@ ACE_Parsed_Info::service_type (void)
}
ACE_INLINE int
+ACE_Parsed_Info::active (int a)
+{
+ this->active_ = a;
+ return 0;
+}
+
+ACE_INLINE int
+ACE_Parsed_Info::active (void)
+{
+ return this->active_;
+}
+
+ACE_INLINE int
ACE_Parsed_Info::path (const ACEXML_Char *p)
{
if (this->path_ == 0)