1 #include "ace/OS_NS_stdlib.h"
5 #endif /*JAWS_BUILD_DLL*/
7 #include "jaws3/Options.h"
9 JAWS_Options::JAWS_Options ()
11 this->cf_
= new JAWS_Config_File ("jaws.conf");
15 JAWS_Options::getenv (const char *key
)
17 const char *value
= 0;
18 if (this->cf_
== 0 || this->cf_
->find (key
, value
) < 0)
19 value
= ACE_OS::getenv (key
);