mud++0.26/etc/
mud++0.26/etc/guilds/
mud++0.26/log/
mud++0.26/mudC/
mud++0.26/player/
mud++0.26/src/unix/
/*
....[@@@..[@@@..............[@.................. 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@hom.net
MUD++ development mailing list    mudpp-list@mailhost.net
------------------------------------------------------------------------------
mudpptempl.cc
*/

// TEMPLATE CLASS INSTANCES FOR MUD++ SERVER

/*
 * Rationale for that file is to be able to reuse all template objects
 * (LList, HashTable and Array) in another project. Until now templates 
 * were instantiated in class file.
 * Now we have separate instance file for each project.
 */

#ifdef __GNUC__
#define DEF_TEMPLATE( Templ , x ) template class Templ< x >
#else // Solaris Proworks C++ 4.0.x
#define DEF_TEMPLATE( Templ , x ) class Templ< x >
#endif


#define DEF_ARRAY( x )      DEF_TEMPLATE( Array , x )
#define DEF_LLIST( x )      DEF_TEMPLATE( LList , x )
#define DEF_HASHTABLE( x )  DEF_TEMPLATE( HashTable, x )


class Action;
class Attack;
class Area;
class Affect;
class Char;
class Description;
class HashNode;
class Help;
class Modifier;
class Host;
class NPC;
class Object;
class PC;
class Room;
class Repop;
class ShopKeeper;
class ShopTrade;
class Social;
class Spell;
struct TriggerData;
#include "guild.h"



#include "array.h"
#include "array.cc"

DEF_ARRAY( struct GuildSkill );
DEF_ARRAY( struct GuildSpell );
DEF_ARRAY( int );


#include "llist.h"
#include "llist.cc"

DEF_LLIST( Action );
DEF_LLIST( Attack );
DEF_LLIST( Area );
DEF_LLIST( Affect );
DEF_LLIST( Char );
DEF_LLIST( Description );
DEF_LLIST( Guild );
DEF_LLIST( HashNode );
DEF_LLIST( Help );
DEF_LLIST( int );
DEF_LLIST( Modifier );
DEF_LLIST( Host );
DEF_LLIST( NPC );
DEF_LLIST( Object );
DEF_LLIST( PC );
DEF_LLIST( Room );
DEF_LLIST( Repop );
DEF_LLIST( ShopKeeper );
DEF_LLIST( ShopTrade );
DEF_LLIST( Social );
DEF_LLIST( Spell );
DEF_LLIST( struct TriggerData );


#include "hash.h"
#include "hash.cc"

DEF_HASHTABLE( Help );
DEF_HASHTABLE( Object );
DEF_HASHTABLE( Room );
DEF_HASHTABLE( NPC );