/
mud++0.33/etc/
mud++0.33/etc/guilds/
mud++0.33/help/propert/
mud++0.33/mudC/
mud++0.33/player/
mud++0.33/src/
mud++0.33/src/bcppbuilder/
mud++0.33/src/unix/
mud++0.33/src/vm/
/*
....[@@@..[@@@..............[@.................. 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
------------------------------------------------------------------------------
mudlntempl.cpp
*/

// TEMPLATE CLASS INSTANCES FOR MUD++ STANDALONE LINKER

#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 )


#include "asmobjfile.h"
#include "asmparser.h"

#include "array.h"
#include "array.cpp"

DEF_ARRAY( asmobjconst );
DEF_ARRAY( int );
DEF_ARRAY( short );
DEF_ARRAY( u16 );


#include "llist.h"
#include "llist.cpp"

DEF_LLIST( label );