// /*-------------------------------------------------------------------*\
// | Concrete Template : Queue_Kernel_2_C
// \*-------------------------------------------------------------------*/
#ifndef CT_QUEUE_KERNEL_2_C
#define CT_QUEUE_KERNEL_2_C 1
///---------------------------------------------------------------------
/// Global Context -----------------------------------------------------
///---------------------------------------------------------------------
#include "CT/Queue/Kernel_2.h"
#include "CT/Queue/Kernel_C.h"
///---------------------------------------------------------------------
/// Interface ----------------------------------------------------------
///---------------------------------------------------------------------
concrete_template <
concrete_instance class Item,
concrete_instance class List_Of_Item =
List_Kernel_1a <Item>,
concrete_instance class Rep =
Representation <List_Of_Item>
>
class Queue_Kernel_2_C :
specializes
Queue_Kernel_C <
Item,
Queue_Kernel_2 <
Item,
List_Of_Item,
Rep
>
>
{};
//----------------------------------------------------------------------
#endif // CT_QUEUE_KERNEL_2_C
Last modified: Thu Jan 11 17:05:57 EST 2007