Re: [Live-devel] particular implementation (subclass)

2011-03-23 Thread kevin631012
> > where functions , " static > HashTable* create(int keyType) and static Iterator* > create(HashTable& hashTable) " are implemented ? > > They are implemented by subclasses of the (virtual base > class) "HashTable". > > See, for example, > "BasicUsageEnvironment/BasicHashTable.cpp", which defi

Re: [Live-devel] particular implementation (subclass)

2011-03-23 Thread Ross Finlayson
where functions , " static HashTable* create(int keyType) and static Iterator* create(HashTable& hashTable) " are implemented ? They are implemented by subclasses of the (virtual base class) "HashTable". See, for example, "BasicUsageEnvironment/BasicHashTable.cpp", which defines the subclass "

[Live-devel] particular implementation (subclass)

2011-03-23 Thread kevin631012
Hi All, when I study live555 , I have some questions . some classes like Hashtable be defined in HashTable.hh as following . class HashTable { public: virtual ~HashTable(); // The following must be implemented by a particular // implementation (subclass): static