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

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

#ifndef CT_STACK_KERNEL_1A_C
#define CT_STACK_KERNEL_1A_C 1

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

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

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

concrete_template <
	concrete_instance class Item
    >
class Stack_Kernel_1a_C :
    specializes
	Stack_Kernel_C <
		Item,
		Stack_Kernel_1a <Item>
	    >
{};

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

#endif // CT_STACK_KERNEL_1A_C

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