chore(hash): include parameter names in header

This commit is contained in:
fallenoak 2022-12-28 17:08:59 -06:00
parent 2aa7daab70
commit 2142e02608
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -7,7 +7,7 @@ class HASHKEY_PTR {
void* m_key;
// Member functions
bool operator==(const HASHKEY_PTR&);
bool operator==(const HASHKEY_PTR& key);
};
class HASHKEY_STR {
@ -17,21 +17,21 @@ class HASHKEY_STR {
// Member functions
~HASHKEY_STR();
HASHKEY_STR& operator=(const char*);
bool operator==(const char*);
HASHKEY_STR& operator=(const char* str);
bool operator==(const char* str);
};
class HASHKEY_STRI : public HASHKEY_STR {
public:
// Member functions
HASHKEY_STRI& operator=(const char*);
bool operator==(const char*);
HASHKEY_STRI& operator=(const char* str);
bool operator==(const char* str);
};
class HASHKEY_NONE {
public:
// Member functions
bool operator==(const HASHKEY_NONE&);
bool operator==(const HASHKEY_NONE& key);
};
#endif