diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
commit | 5dbf1809c6e3e905b94b8764e99491e608122261 (patch) | |
tree | 5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /core/dictionary.h | |
parent | 45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff) |
A Whole New World (clang-format edition)
I can show you the code
Pretty, with proper whitespace
Tell me, coder, now when did
You last write readable code?
I can open your eyes
Make you see your bad indent
Force you to respect the style
The core devs agreed upon
A whole new world
A new fantastic code format
A de facto standard
With some sugar
Enforced with clang-format
A whole new world
A dazzling style we all dreamed of
And when we read it through
It's crystal clear
That now we're in a whole new world of code
Diffstat (limited to 'core/dictionary.h')
-rw-r--r-- | core/dictionary.h | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/core/dictionary.h b/core/dictionary.h index a1bf291d6b..588e33a95f 100644 --- a/core/dictionary.h +++ b/core/dictionary.h @@ -29,57 +29,53 @@ #ifndef DICTIONARY_H #define DICTIONARY_H - -#include "list.h" #include "array.h" +#include "list.h" #include "ustring.h" class Variant; - struct DictionaryPrivate; - class Dictionary { mutable DictionaryPrivate *_p; - - void _ref(const Dictionary& p_from) const; + void _ref(const Dictionary &p_from) const; void _unref() const; -public: - void get_key_list( List<Variant> *p_keys) const; +public: + void get_key_list(List<Variant> *p_keys) const; - Variant& operator[](const Variant& p_key); - const Variant& operator[](const Variant& p_key) const; + Variant &operator[](const Variant &p_key); + const Variant &operator[](const Variant &p_key) const; - const Variant* getptr(const Variant& p_key) const; - Variant* getptr(const Variant& p_key); + const Variant *getptr(const Variant &p_key) const; + Variant *getptr(const Variant &p_key); - Variant get_valid(const Variant& p_key) const; + Variant get_valid(const Variant &p_key) const; int size() const; bool empty() const; void clear(); - bool has(const Variant& p_key) const; - bool has_all(const Array& p_keys) const; + bool has(const Variant &p_key) const; + bool has_all(const Array &p_keys) const; - void erase(const Variant& p_key); + void erase(const Variant &p_key); - bool operator==(const Dictionary& p_dictionary) const; + bool operator==(const Dictionary &p_dictionary) const; uint32_t hash() const; - void operator=(const Dictionary& p_dictionary); + void operator=(const Dictionary &p_dictionary); - const Variant* next(const Variant* p_key=NULL) const; + const Variant *next(const Variant *p_key = NULL) const; Array keys() const; Array values() const; Dictionary copy() const; - Dictionary(const Dictionary& p_from); + Dictionary(const Dictionary &p_from); Dictionary(); ~Dictionary(); }; |