Go to the documentation of this file.00001 #ifndef OPENTISSUE_CORE_MATH_INTERVAL_INTERVAL_EMPTY_H
00002 #define OPENTISSUE_CORE_MATH_INTERVAL_INTERVAL_EMPTY_H
00003
00004
00005
00006
00007
00008
00009
00010 #include <OpenTissue/configuration.h>
00011
00012 #include <OpenTissue/core/math/interval/interval_fwd.h>
00013
00014 namespace OpenTissue
00015 {
00016 namespace math
00017 {
00018 namespace interval
00019 {
00020
00028 template<typename value_type>
00029 inline bool empty( Interval<value_type> const & i) { return i.is_empty(); }
00030
00031 }
00032 }
00033 }
00034
00035
00036 #endif