Searched defs:StreamAttr (Results 1 – 4 of 4) sorted by relevance
130 struct StreamAttr { struct134 explicit StreamAttr(bool flag) : type_(BOOL_TYPE), boolVal_(flag) {} in StreamAttr() argument135 explicit StreamAttr(int value) : type_(INT_TYPE), intVal_(value) {} in StreamAttr() function136 explicit StreamAttr(std::string str) : type_(STRING_TYPE), strVal_(str) {} in StreamAttr() function138 ValueType GetType() const in GetType()143 int GetIntValue() const in GetIntValue()148 std::string GetStrValue() const in GetStrValue()153 bool GetBoolValue() const in GetBoolValue()161 int intVal_ = -1;162 std::string strVal_ = "";[all …]
99 struct StreamAttr { struct100 int streamType;
124 struct StreamAttr { struct125 int streamType; /**< Stream type {@link StreamType} */
80 } StreamAttr; typedef