diff options
author | Michael Münch <michael@codingmicha.de> | 2011-02-13 18:06:10 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-02-13 18:06:10 +0100 |
commit | ab7324559877ca1fd18178e1a41f821d0dfe4be3 (patch) | |
tree | 6acd68306d56b68889b549fdd092df23435a4dbf /idl/inc/hash.hxx | |
parent | 2dadfcaeaeb65ba4dd67c82f76db0fd3093207e9 (diff) |
Easy hack: idl removed and translated comments
Diffstat (limited to 'idl/inc/hash.hxx')
-rw-r--r-- | idl/inc/hash.hxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx index 8f13536265ce..41ee6db65c65 100644 --- a/idl/inc/hash.hxx +++ b/idl/inc/hash.hxx @@ -33,13 +33,12 @@ #include <tools/string.hxx> #include <vector> -/****************** H a s h - T a b l e **********************************/ class SvHashTable { UINT32 nMax; // size of hash-tabel UINT32 nFill; // elements in hash-tabel - UINT32 lAsk; // Anzahl der Anfragen - UINT32 lTry; // Anzahl der Versuche + UINT32 lAsk; // number of requests + UINT32 lTry; // number of tries protected: BOOL Test_Insert( const void *, BOOL bInsert, UINT32 * pInsertPos ); @@ -56,7 +55,6 @@ public: virtual BOOL IsEntry( UINT32 ) const = 0; }; -/************** S t r i n g H a s h T a b l e E n t r y ******************/ class SvStringHashTable; class SvStringHashEntry : public SvRefBase { @@ -97,7 +95,6 @@ public: SV_DECL_IMPL_REF(SvStringHashEntry) -/****************** S t r i n g H a s h T a b l e ************************/ typedef ::std::vector< SvStringHashEntry* > SvStringHashList; class SvStringHashTable : public SvHashTable |