http://bugs.openzim.org/show_bug.cgi?id=15


Tommi Mäkitalo <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WONTFIX




--- Comment #3 from Tommi Mäkitalo <[email protected]>  2010-03-27 10:30:52 CET 
---
There is a operator<< for std::ostream, which prints the hex representation of
the uuid. If you want to see the hex representation of a uuid do:

  zim::Uuid myUuid = ...;
  std::cout << myUuid;

If you really need a std::string, use std::ostringstream:

  std::ostringstream s;
  s << myUuid;
  std::string hexUuid = s.str();

-- 
Configure bugmail: http://bugs.openzim.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
dev-l mailing list
[email protected]
https://intern.openzim.org/mailman/listinfo/dev-l

Reply via email to