2008-11-14 19:38:58 +00:00
|
|
|
/*! \file kbool/src/instonly.cpp
|
2008-05-30 18:06:21 +00:00
|
|
|
\author Probably Klaas Holwerda
|
2008-11-14 19:38:58 +00:00
|
|
|
|
2008-05-30 18:06:21 +00:00
|
|
|
Copyright: 2001-2004 (C) Probably Klaas Holwerda
|
2008-11-14 19:38:58 +00:00
|
|
|
|
2008-05-30 18:06:21 +00:00
|
|
|
Licence: wxWidgets Licence
|
2008-11-14 19:38:58 +00:00
|
|
|
|
|
|
|
RCS-ID: $Id: instonly.cpp,v 1.2 2006/11/05 14:59:31 titato Exp $
|
2008-05-30 18:06:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma option -Jgd
|
|
|
|
|
2008-11-14 19:38:58 +00:00
|
|
|
#include "kbool/_dl_itr.h"
|
|
|
|
#include "kbool/node.h"
|
|
|
|
#include "kbool/record.h"
|
|
|
|
#include "kbool/link.h"
|
|
|
|
#include "kbool/_lnk_itr.h"
|
|
|
|
#include "kbool/scanbeam.h"
|
|
|
|
#include "kbool/graph.h"
|
|
|
|
#include "kbool/graphlst.h"
|
|
|
|
//#include "kbool/misc.h"
|
2008-05-30 18:06:21 +00:00
|
|
|
|
|
|
|
template class DL_Node<void *>;
|
|
|
|
template class DL_Iter<void *>;
|
|
|
|
template class DL_List<void *>;
|
|
|
|
|
|
|
|
template class DL_Node<int>;
|
|
|
|
template class DL_Iter<int>;
|
|
|
|
template class DL_List<int>;
|
|
|
|
|
|
|
|
template class TDLI<Node>;
|
|
|
|
template class TDLI<LPoint>;
|
|
|
|
template class TDLI<Record>;
|
|
|
|
template class TDLI<KBoolLink>;
|
|
|
|
template class TDLI<Graph>;
|
|
|
|
|
|
|
|
#endif
|