// /*-------------------------------------------------------------------*\
// | Concrete Template : Binary_Tree_Kernel_1a
// \*-------------------------------------------------------------------*/
#ifndef CT_BINARY_TREE_KERNEL_1A
#define CT_BINARY_TREE_KERNEL_1A 1
///---------------------------------------------------------------------
/// Global Context -----------------------------------------------------
///---------------------------------------------------------------------
#include "CT/Binary_Tree/Kernel_1.h"
///---------------------------------------------------------------------
/// Interface ----------------------------------------------------------
///---------------------------------------------------------------------
concrete_template <
concrete_instance class Item
>
class Binary_Tree_Kernel_1a :
specializes
Binary_Tree_Kernel_1 <
Item,
Binary_Tree_Kernel_1a <Item>
>
{};
//----------------------------------------------------------------------
#endif // CT_BINARY_TREE_KERNEL_1A
Last modified: Thu Jan 11 17:05:57 EST 2007