A helper class to store interface references of different types.
More...
#include <interfacecontainer.h>
template<class key, class hashImpl = void, class equalImpl = std::equal_to<key>>
class cppu::OMultiTypeInterfaceContainerHelperVar< key, hashImpl, equalImpl >
A helper class to store interface references of different types.
- See also
- OInterfaceIteratorHelper
-
OInterfaceContainerHelper
◆ keyType
template<class key , class hashImpl = void, class equalImpl = std::equal_to<key>>
◆ OMultiTypeInterfaceContainerHelperVar()
template<class key , class hashImpl , class equalImpl >
Create a container of interface containers.
- Parameters
-
rMutex | the mutex to protect multi thread access. The lifetime must be longer than the lifetime of this object. |
◆ ~OMultiTypeInterfaceContainerHelperVar()
template<class key , class hashImpl , class equalImpl >
◆ addInterface()
template<class key , class hashImpl , class equalImpl >
Inserts an element into the container with the specified key.
The position is not specified, thus it is not specified in which order events are fired.
- Attention
- If you add the same interface more than once, then it will be added to the elements list more than once and thus if you want to remove that interface from the list, you have to call removeInterface() the same number of times. In the latter case, you will also get events fired more than once (if the interface is a listener interface).
- Parameters
-
rKey | the id of the container |
r | interface to be added; it is allowed, to insert null or the same interface more than once |
- Returns
- the new count of elements in the container
◆ clear()
template<class key , class hashImpl , class equalImpl >
Remove all elements of all containers.
Does not delete the container.
◆ disposeAndClear()
template<class key , class hashImpl , class equalImpl >
Call disposing on all references in the container, that support XEventListener.
Then clears the container.
- Parameters
-
rEvt | the event object which is passed during disposing() call |
◆ getContainedTypes()
template<class key , class hashImpl , class equalImpl >
Return all id's under which at least one interface is added.
◆ getContainer()
template<class key , class hashImpl , class equalImpl >
Return the container created under this key.
The InterfaceContainerHelper exists until the whole MultiTypeContainer is destroyed.
- Returns
- the container created under this key. If the container was not created, null was returned.
◆ operator delete() [1/2]
template<class key , class hashImpl = void, class equalImpl = std::equal_to<key>>
◆ operator delete() [2/2]
template<class key , class hashImpl = void, class equalImpl = std::equal_to<key>>
◆ operator new() [1/2]
template<class key , class hashImpl = void, class equalImpl = std::equal_to<key>>
◆ operator new() [2/2]
template<class key , class hashImpl = void, class equalImpl = std::equal_to<key>>
◆ removeInterface()
template<class key , class hashImpl , class equalImpl >
Removes an element from the container with the specified key.
It uses interface equality to remove the interface.
- Parameters
-
rKey | the id of the container |
rxIFace | interface to be removed |
- Returns
- the new count of elements in the container
The documentation for this class was generated from the following files: