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

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

#ifndef CT_LIST_KERNEL_1A_C
#define CT_LIST_KERNEL_1A_C 1

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

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

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

concrete_template <
	concrete_instance class Item   
    >
class List_Kernel_1a_C :
    specializes
	List_Kernel_C <
		Item,
		List_Kernel_1a <Item>
	    >
{};

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

#endif // CT_LIST_KERNEL_1A_C

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