remove dead code, r=sicking, sr=peterv

This commit is contained in:
axel%pike.org 2003-04-04 15:44:13 +00:00
Родитель e3ff4dce98
Коммит 5e6fa01dba
1 изменённых файлов: 0 добавлений и 20 удалений

Просмотреть файл

@ -31,31 +31,11 @@ class TxObject {
public:
/**
* Creates a new TxObject
**/
TxObject() {};
/**
* Deletes this TxObject
**/
virtual ~TxObject() {};
/**
* Returns the Hashcode for this TxObject
**/
virtual PRUint32 hashCode() {
return NS_PTR_TO_INT32(this);
} //-- hashCode
/**
* Returns true if the given Object is equal to this object.
* By default the comparison operator == is used, but this may
* be overridden
**/
virtual MBool equals(TxObject* obj) {
return (MBool)(obj == this);
} //-- equals
};
#endif