instonly.cpp 848 Bytes
Newer Older
1
/*! \file kbool/src/instonly.cpp
2
    \author Probably Klaas Holwerda
3
 
4
    Copyright: 2001-2004 (C) Probably Klaas Holwerda
5
 
charras's avatar
charras committed
6
    Licence: see kboollicense.txt 
7
 
charras's avatar
charras committed
8
    RCS-ID: $Id: instonly.cpp,v 1.3 2009/02/06 21:33:03 titato Exp $
9 10 11 12 13
*/

#ifdef __GNUG__
#pragma option -Jgd

14 15 16 17 18 19 20 21 22
#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"
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

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