File: TUUID.h

package info (click to toggle)
bornagain 23.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 103,956 kB
  • sloc: cpp: 423,131; python: 40,997; javascript: 11,167; awk: 630; sh: 356; ruby: 173; xml: 130; makefile: 45; ansic: 24
file content (22 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef TUUID_H
#define TUUID_H


#include "RtypesCore.h"

namespace ROOT {

class TUUID {
public:

    TUUID();

    void GetUUID(UChar_t uuid[16]) const;

protected:
    UInt_t    fTimeLow;               // 60 bit time, lower 32 bits
};

}
#endif