aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmath/lluuid.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llmath/lluuid.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/llmath/lluuid.h b/linden/indra/llmath/lluuid.h
index b8288eb..aeda734 100644
--- a/linden/indra/llmath/lluuid.h
+++ b/linden/indra/llmath/lluuid.h
@@ -29,8 +29,7 @@
29 29
30#include <iostream> 30#include <iostream>
31#include <set> 31#include <set>
32 32#include "stdtypes.h"
33#include "llstring.h"
34 33
35const S32 UUID_BYTES = 16; 34const S32 UUID_BYTES = 16;
36const S32 UUID_WORDS = 4; 35const S32 UUID_WORDS = 4;
@@ -103,7 +102,9 @@ public:
103 102
104 void toString(char *out) const; // Does not allocate memory, needs 36 characters (including \0) 103 void toString(char *out) const; // Does not allocate memory, needs 36 characters (including \0)
105 void toCompressedString(char *out) const; // Does not allocate memory, needs 17 characters (including \0) 104 void toCompressedString(char *out) const; // Does not allocate memory, needs 17 characters (including \0)
106 LLString getString() const; 105
106 std::string asString() const;
107
107 U16 getCRC16() const; 108 U16 getCRC16() const;
108 U32 getCRC32() const; 109 U32 getCRC32() const;
109 110