Searched defs:TriState (Results 1 – 1 of 1) sorted by relevance
27 TriState() : mIsSet(false) { } in TriState() function28 TriState(const TriState<T> &other) : mIsSet(other.mIsSet), mValue(other.mValue) { } in TriState() function29 explicit TriState(const T &value) : mIsSet(true), mValue(value) { } in TriState() function