include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Wed, 12 Aug 2009 11:32:42 -0700
branchdev
changeset 161 4bfb7c31ab28
parent 19 efa14432761a
permissions -rw-r--r--
make-zigzag-subsamples.py doesn't output the union, rips-consistency-zigzag.cpp fixed show_progress

#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