#ifndef _ITEM_
#define _ITEM_

/**
 * @file Item.h
 * Projet sem04-tp-Cpp3
 * @author l'équipe pédagogique 
 * @version 1 23/12/05
 * @brief Spécialisation du type Item
 * Structures de données et algorithmes - DUT1 Paris 5
 */
 
#include "Position.h"
typedef Position Item;

#endif
