summaryrefslogtreecommitdiff
path: root/ace/Env_Value_T.i
Commit message (Collapse)AuthorAgeFilesLines
* moved ACE_Convert specializations from .i file to .h file, because the ↵levine1998-02-191-54/+0
| | | | resulted in multiple instantiations with ACE_INLINE disabled
* Added conversion function for unsigned short.nanbor1998-01-201-0/+6
|
* Added static cast in short and int conversion function.nw11998-01-091-2/+2
|
* (strtoul): moved the Linux/Alpha hack from Env_Value_T.i to OS.ilevine1998-01-061-6/+0
|
* (ACE_Convert, u_long): use ::strtol and cast the result to an unsigned long ↵levine1998-01-061-0/+6
| | | | on Linux/Alpha
* * tests/Env_Value_Test.cpp (main): Changed the definition of theChris Cleeland1998-01-021-2/+7
| | | | | | TEST_THIS macro to be all on one line. While ugly, this helps in locating the line when ACE_ASSERT fails, since allowing the macro to have multiple lines skews the line # reported by ACE_ASSERT.
* *** empty log message ***schmidt1998-01-021-17/+20
|
* * ace/Env_Value_T.*: Added a new template (ACE_Env_Value) which isChris Cleeland1997-12-311-0/+91
a typesafe encapsulation of environment variables with the ability to provide a value to be used as a default if the variable isn't set. An example of its use can be seen in the corresponding test, tests/Env_Value_Test.cpp. * tests/Env_Value_Test.cpp: Added test for the new template added above. * tests/Makefile: Added new Env_Value_Test test to the Makefile.