/*
....[@@@..[@@@..............[@.................. 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
------------------------------------------------------------------------------
indexable.cc
*/

#include "indexable.h"
#include "room.h"
#include "area.h"
#include "object.h"
#include "npc.h"
#include "room.h"

#define DEF_INDEXLIST( x ) template class Indexable<x>; template class IndexList<x>

DEF_INDEXLIST( Object );
DEF_INDEXLIST( Room );
DEF_INDEXLIST( NPC );