|
Doxygen
|
#include <reflist.h>
类 RefListManager 继承关系图:
RefListManager 的协作图:静态 Public 成员函数 | |
| static RefListManager & | instance () |
Private 成员函数 | |
| RefListManager () | |
| RefListManager (const RefListManager &other)=delete | |
| RefListManager & | operator= (const RefListManager &other)=delete |
额外继承的成员函数 | |
Public 类型 继承自 LinkedMap< RefList > | |
| using | Ptr = std::unique_ptr< RefList > |
| using | Vec = std::vector< Ptr > |
| using | iterator = typename Vec::iterator |
| using | const_iterator = typename Vec::const_iterator |
| using | reverse_iterator = typename Vec::reverse_iterator |
| using | const_reverse_iterator = typename Vec::const_reverse_iterator |
Public 成员函数 继承自 LinkedMap< RefList > | |
| const RefList * | find (const std::string &key) const |
| Find an object given the key. 更多... | |
| const RefList * | find (const QCString &key) const |
| Find an object given the key. 更多... | |
| const RefList * | find (const char *key) const |
| Find an object given the key. 更多... | |
| RefList * | find (const char *key) |
| A non-const wrapper for find() const 更多... | |
| RefList * | find (const QCString &key) |
| A non-const wrapper for find() const 更多... | |
| RefList * | find (const std::string &key) |
| A non-const wrapper for find() const 更多... | |
| RefList * | add (const char *k, Args &&... args) |
| Adds a new object to the ordered vector if it was not added already. 更多... | |
| RefList * | add (const QCString &k, Args &&... args) |
| RefList * | add (const char *k, Ptr &&ptr) |
| Adds an existing object to the ordered vector (unless another object was already added under the same key). 更多... | |
| RefList * | add (const QCString &k, Ptr &&ptr) |
| RefList * | prepend (const char *k, Args &&... args) |
| Prepends a new object to the ordered vector if it was not added already. 更多... | |
| RefList * | prepend (const QCString &key, Args &&... args) |
| bool | del (const QCString &key) |
| Removes an object from the container and deletes it. 更多... | |
| Ptr & | operator[] (size_t pos) |
| const Ptr & | operator[] (size_t pos) const |
| iterator | begin () |
| const_iterator | begin () const |
| iterator | end () |
| const_iterator | end () const |
| reverse_iterator | rbegin () |
| const_reverse_iterator | rbegin () const |
| reverse_iterator | rend () |
| const_reverse_iterator | rend () const |
| bool | empty () const |
| size_t | size () const |
| void | clear () |
|
privatedelete |
|
inlinestatic |
|
privatedelete |