include/geometry/number-traits.h
author Dmitriy Morozov <morozov@cs.duke.edu>
Tue, 19 Feb 2008 09:10:51 -0500
branchar
changeset 62 0e7554fd0d51
parent 19 efa14432761a
permissions -rw-r--r--
Changed geometry to RLog-based logging and counters

#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