include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Mon, 04 Jun 2012 09:05:45 -0700
branchdev
changeset 255 a7e010314a03
parent 19 efa14432761a
permissions -rw-r--r--
Added smooth() to Python binding + fixed a bug in adaptor.py

#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