// /*-------------------------------------------------------------------*\
// | Abstract Template : Set_Unite
// \*-------------------------------------------------------------------*/
#ifndef AT_SET_UNITE
#define AT_SET_UNITE 1
///------------------------------------------------------------------------
/// Global Context --------------------------------------------------------
///------------------------------------------------------------------------
#include "AT/Set/Kernel.h"
///------------------------------------------------------------------------
/// Interface -------------------------------------------------------------
///------------------------------------------------------------------------
abstract_template <
concrete_instance class Item
>
class Set_Unite :
extends
abstract_instance Set_Kernel <Item>
{
public:
procedure Unite (
consumes Set_Unite <Item>& s
) is_abstract;
/*!
ensures
self = #self union #s
!*/
};
#endif // AT_SET_UNITE
Last modified: Thu Jan 11 17:05:57 EST 2007