ARC SDK
GUID.h
1 // -*- indent-tabs-mode: nil -*-
2 
3 #ifndef __ARC_GUID_H__
4 #define __ARC_GUID_H__
5 
6 #include <string>
7 
8 namespace Arc {
9 
10  // Utilities for generating unique identifiers in the form 12345678-90ab-cdef-1234-567890abcdef
11 
13 
14  void GUID(std::string& guid);
16 
17  std::string UUID(void);
18 
19 } // namespace Arc
20 
21 #endif // __ARC_GUID_H__