mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
chore(hash): include parameter names in header
This commit is contained in:
parent
2aa7daab70
commit
2142e02608
1 changed files with 6 additions and 6 deletions
|
|
@ -7,7 +7,7 @@ class HASHKEY_PTR {
|
||||||
void* m_key;
|
void* m_key;
|
||||||
|
|
||||||
// Member functions
|
// Member functions
|
||||||
bool operator==(const HASHKEY_PTR&);
|
bool operator==(const HASHKEY_PTR& key);
|
||||||
};
|
};
|
||||||
|
|
||||||
class HASHKEY_STR {
|
class HASHKEY_STR {
|
||||||
|
|
@ -17,21 +17,21 @@ class HASHKEY_STR {
|
||||||
|
|
||||||
// Member functions
|
// Member functions
|
||||||
~HASHKEY_STR();
|
~HASHKEY_STR();
|
||||||
HASHKEY_STR& operator=(const char*);
|
HASHKEY_STR& operator=(const char* str);
|
||||||
bool operator==(const char*);
|
bool operator==(const char* str);
|
||||||
};
|
};
|
||||||
|
|
||||||
class HASHKEY_STRI : public HASHKEY_STR {
|
class HASHKEY_STRI : public HASHKEY_STR {
|
||||||
public:
|
public:
|
||||||
// Member functions
|
// Member functions
|
||||||
HASHKEY_STRI& operator=(const char*);
|
HASHKEY_STRI& operator=(const char* str);
|
||||||
bool operator==(const char*);
|
bool operator==(const char* str);
|
||||||
};
|
};
|
||||||
|
|
||||||
class HASHKEY_NONE {
|
class HASHKEY_NONE {
|
||||||
public:
|
public:
|
||||||
// Member functions
|
// Member functions
|
||||||
bool operator==(const HASHKEY_NONE&);
|
bool operator==(const HASHKEY_NONE& key);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue