#include <Bstream.h>

#include "SourceLine.h"
#include "object.h"

template class ListItem<SourceLine>;
template class List<SourceLine>;
template class ListItem<Import>;
template class List<Import>;
template class ListItem<Reloc>;
template class List<Reloc>;

template int ext_compare(const Symbol *, const Symbol *);
template class AVLItem<Symbol>;
template class AVLTree<Symbol>;
template int ext_compare(const Str *, const Str *);
template class AVLItem<Str>;
template class AVLTree<Str>;

template BOstream & operator<< (BOstream &, const List<Import> & );
template BOstream & operator<< (BOstream &, const List<Reloc> & );
template BOstream & operator<< (BOstream &, const AVLTree<Symbol> & );

template BIstream & operator>> (BIstream &, List<Import> & );
template BIstream & operator>> (BIstream &, List<Reloc> & );
template BIstream & operator>> (BIstream &, AVLTree<Symbol> & );







syntax highlighted by Code2HTML, v. 0.9.1