add xfer constructors to cell/face/point Zone and (Static)HashTable

This commit is contained in:
Mark Olesen
2008-10-10 10:22:08 +02:00
parent 56702ea99d
commit 8c23f5423c
10 changed files with 226 additions and 18 deletions

View File

@ -83,6 +83,19 @@ HashTable<T, Key, Hash>::HashTable(const HashTable<T, Key, Hash>& ht)
}
}
template<class T, class Key, class Hash>
HashTable<T, Key, Hash>::HashTable(const xfer<HashTable<T, Key, Hash> >& ht)
:
HashTableName(),
tableSize_(0),
table_(NULL),
nElmts_(0),
endIter_(*this, NULL, 0),
endConstIter_(*this, NULL, 0)
{
transfer(*ht);
}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //