|
|
using | StringSet = std::set< std::string > |
| |
|
using | LockT = SharedObject< StringSet >::LockT |
| |
|
using | WriteLockT = SharedObject< StringSet >::WriteLockT |
| |
|
using | ReadLockT = SharedObject< StringSet >::ReadLockT |
| |
|
using | LockT = boost::shared_mutex |
| |
|
using | WriteLockT = boost::unique_lock< LockT > |
| |
|
using | ReadLockT = boost::shared_lock< LockT > |
| |
|
|
std::set< std::string > | t_ |
| |
|
LockT | mutex_ |
| |
§ SharedStringSet()
| identt::utils::SharedStringSet::SharedStringSet |
( |
| ) |
|
|
inline |
§ Add()
| void identt::utils::SharedStringSet::Add |
( |
std::string |
elem | ) |
|
|
inline |
Add : add one value.
- Parameters
-
| elem | std::string elem to add |
- Returns
- none
§ GetSize()
| size_t identt::utils::SharedStringSet::GetSize |
( |
| ) |
|
|
inline |
GetSize: get size of set.
- Returns
- size_t size
§ Reset()
| void identt::utils::SharedStringSet::Reset |
( |
| ) |
|
|
inline |
Reset: clear the set.
- Returns
- none
The documentation for this class was generated from the following file: