include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Mon, 12 Apr 2010 19:01:01 -0700
branchdev
changeset 209 324354e0d3bf
parent 19 efa14432761a
permissions -rw-r--r--
Fixed a link: dionysis -> dionysus

#ifndef __NUMBER_TRAITS_H__
#define __NUMBER_TRAITS_H__

template<class NumberType_>
class number_traits
{
	public:
		typedef							NumberType_									NumberType;

		static NumberType&				normalize(NumberType& n)					{ return n; }
};

#endif