// #ifdef STATISTICS #include "Behavioural/include/Stat_binary_tree.h" namespace morpheo { namespace behavioural { bool Stat_binary_tree::is_leaf (void) { return ((_left == NULL) and (_right == NULL)); } }; }; // #endif