Commit e0556157 authored by jan.koester's avatar jan.koester
Browse files

tes

parent f7306a4b
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -30,11 +30,9 @@

#pragma once

#ifndef uuid_t
namespace uuid{
   typedef unsigned char uuid_t[16];
#endif

namespace uuid{
   class uuid {
   public:
      uuid();
@@ -65,8 +63,8 @@ namespace uuid{
      bool operator==(const uuid_t &src) const;
      bool operator==(const uuid &src) const;
      bool operator!=(const uuid &src) const;
      unsigned char value[16];
      
      uuid_t value;
   private:
       char *cstr;
   };