空uuid_t常数还是函数?

时间:2016-04-15 23:04:42

标签: c++ posix

是否有一个null uuid_t常量或一个可以在POSIX中返回null uuid_t的函数?

我有一个函数应该在失败时返回null uuid_t,因此我需要生成/返回null uuid_t ...

uuid_t getComponent(const string& name)
{
   if (components.find(name) == components.end())
       // return null uuid_t

   return components[name];
}

1 个答案:

答案 0 :(得分:0)

您是否尝试过uuid_clear()

说明

  

uuid_clear函数设置提供的uuid变量的值          uu为NULL值。

Example

uuid_clear(uuid);