TIVI-153: Add as dependency for iputils
[profile/ivi/opensp.git] / include / HashTableItemBase.cxx
1 // Copyright (c) 1994 James Clark
2 // See the file COPYING for copying permission.
3
4 #ifndef HashTableItemBase_DEF_INCLUDED
5 #define HashTableItemBase_DEF_INCLUDED 1
6
7 #ifdef SP_NAMESPACE
8 namespace SP_NAMESPACE {
9 #endif
10
11 template<class K>
12 HashTableItemBase<K>::~HashTableItemBase()
13 {
14 }
15
16 template<class K>
17 HashTableItemBase<K>::HashTableItemBase(const K &k) : key(k)
18 {
19 }
20
21
22 #ifdef SP_NAMESPACE
23 }
24 #endif
25
26 #endif /* not HashTableItemBase_DEF_INCLUDED */