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 HashTable* create(int keyType);
..
        class Iterator {
            public:
                // The following must be implemented by a particular
                // implementation (subclass):
                static Iterator* create(HashTable& hashTable);
        };
..
    protected:
        HashTable(); // abstract base class
};

where functions , " static HashTable* create(int keyType) and static Iterator* 
create(HashTable& hashTable) " are implemented ?

I am not familiar with CPP . it looks like constructor but Im not sure and I 
can't find it in any cpp code . please tell me what these are ?
any hints will be helpful ~

Thanks 
Kevin ...



      

_______________________________________________
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

Reply via email to