vega
uid.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace vega {
6  class UID {
7  public:
9 
10  UID();
11  explicit UID(const std::string& uid);
12 
13  // Supply a number to be included in the UID (for instance you might
14  // want to include the CT slice number in the UID)
15  // Value of zero is ignored
16  static UID generate(uint16_t num = 0);
17 
18  const std::string& str() const;
19  bool operator==(const UID& other) const;
20  bool operator!=(const UID& other) const;
21  bool operator<(const UID& other) const;
22 
23  friend std::ostream& operator<<(std::ostream& os, const UID& uid);
24 
25  private:
26  static const UID BASE;
27  static const size_t MAX_LENGTH;
28 
29  std::string m_uid;
30 
31  static std::string timestamp();
32  };
33 }
const std::string & str() const
bool operator!=(const UID &other) const
friend std::ostream & operator<<(std::ostream &os, const UID &uid)
Definition: uid.h:6
bool operator==(const UID &other) const
static UID generate(uint16_t num=0)
Definition: age.h:6
static const UID IMPLEMENTATION_CLASS_UID
Definition: uid.h:8
bool operator<(const UID &other) const