summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/BoostWorkaround/boost/lexical_cast.hpp
blob: af91b011f2b6a7a02524e254d9694c6536bc69db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/// A quick replacement for boost::lexical_cast for all the Boost haters out there

#ifndef __AI_BOOST_WORKAROUND_LEXICAL_CAST
#define __AI_BOOST_WORKAROUND_LEXICAL_CAST

#include <sstream>

namespace boost
{

	/// A quick replacement for boost::lexical_cast - should work for all types a stringstream can handle
	template <typename TargetType, typename SourceType>
	TargetType lexical_cast( const SourceType& source)
	{
		std::stringstream stream;
		TargetType result;

		stream << source;
		stream >> result;
		return result;
	}

} // namespace boost

#endif // __AI_BOOST_WORKAROUND_LEXICAL_CAST