version : internal_string

Return the internal version as a string.

Any other method of any other object can call this method. This is called 'public' access.

The data-type returned is "stringtype"; The version as a string.

This method is contained in the object "version".

This method takes no arguments.

C++

The files "boost/lexical_cast.hpp" are included.

Return this version as an internal string.

	return boost::lexical_cast<std::string>(_major) + "." +
		boost::lexical_cast<std::string>(_minor) + "." +
		boost::lexical_cast<std::string>(_build) + "." +
		boost::lexical_cast<std::string>(_subbuild);

Java

Return this version as an internal string.

	return String.valueOf(_major) + "." + String.valueOf(_minor) + "." + 
		String.valueOf(_phase) + "." + String.valueOf(_build);

Generated: Wed Apr 5 23:52:48 EST 2006 using "xsltproc ... docbook.xsl". Copyright (c) 2003, 2004, 2005; Paul Hamilton; pHamtec P/L. Use, modification, and distribution is provided free of any limitations.