/*
....[@@@..[@@@..............[@.................. MUD++ is a written from
....[@..[@..[@..[@..[@..[@@@@@....[@......[@.... scratch multi-user swords and
....[@..[@..[@..[@..[@..[@..[@..[@@@@@..[@@@@@.. sorcery game written in C++.
....[@......[@..[@..[@..[@..[@....[@......[@.... This server is an ongoing
....[@......[@..[@@@@@..[@@@@@.................. development project.  All 
................................................ contributions are welcome. 
....Copyright(C).1995.Melvin.Smith.............. Enjoy. 
------------------------------------------------------------------------------
Melvin Smith (aka Fusion)         msmith@falcon.mercer.peachnet.edu 
MUD++ development mailing list    mudpp-list@spice.com
------------------------------------------------------------------------------
llist.cc
*/


#include "llist.h"
#include "indexable.h"
#include "room.h"
#include "repop.h"
#include "area.h"

#define DEF_LLIST( x )  template class Node<x>; template class LList<x>

DEF_LLIST( Attack );
DEF_LLIST( Area );
DEF_LLIST( Affect );
DEF_LLIST( Char );
DEF_LLIST( Description );
DEF_LLIST( Indexable<Object> );
DEF_LLIST( Indexable<NPC> );
DEF_LLIST( Indexable<Room> );
DEF_LLIST( int );
DEF_LLIST( Modifier );
DEF_LLIST( NPC );
DEF_LLIST( Object );
DEF_LLIST( PC );
DEF_LLIST( Room );
DEF_LLIST( Repop );
DEF_LLIST( Spell );