Resolve/C++ Catalog
CT/Binary_Tree/Kernel_1a_C.h
Copyright © 2010, Reusable Software Research Group, The Ohio State University

//  /*-------------------------------------------------------------------*\
//  |   Concrete Template : Binary_Tree_Kernel_1a_C
//  \*-------------------------------------------------------------------*/

#ifndef CT_BINARY_TREE_KERNEL_1A_C
#define CT_BINARY_TREE_KERNEL_1A_C 1

///---------------------------------------------------------------------
/// Global Context -----------------------------------------------------
///---------------------------------------------------------------------

#include "CT/Binary_Tree/Kernel_1a.h"
#include "CT/Binary_Tree/Kernel_C.h"

///---------------------------------------------------------------------
/// Interface ----------------------------------------------------------
///---------------------------------------------------------------------

concrete_template <
	concrete_instance class Item
    >
class Binary_Tree_Kernel_1a_C :
    specializes
	concrete_instance Binary_Tree_Kernel_C <
		Item,
		Binary_Tree_Kernel_1a <Item>
	    >
{};

//----------------------------------------------------------------------

#endif // CT_BINARY_TREE_KERNEL_1A_C

Last modified: Thu Jan 11 17:05:57 EST 2007