diff options
author | Mike Buland <eichlan@xagasoft.com> | 2013-03-12 05:26:44 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2013-03-12 05:26:44 +0000 |
commit | a7c44a1356a8ee1384d70dd98941e00c89ec2702 (patch) | |
tree | 70107f8cc7517c390f8d215abd24c5dc707580c1 /src/unstable/uuid.h | |
parent | 9700147ab5adaf28eecf931a9c7c096918baaf73 (diff) | |
download | libbu++-a7c44a1356a8ee1384d70dd98941e00c89ec2702.tar.gz libbu++-a7c44a1356a8ee1384d70dd98941e00c89ec2702.tar.bz2 libbu++-a7c44a1356a8ee1384d70dd98941e00c89ec2702.tar.xz libbu++-a7c44a1356a8ee1384d70dd98941e00c89ec2702.zip |
Bu::Uuid now supports being formatted, it uses the standard toString() method.
The new cache is really coming along now.
Diffstat (limited to 'src/unstable/uuid.h')
-rw-r--r-- | src/unstable/uuid.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/unstable/uuid.h b/src/unstable/uuid.h index e7c5f00..35cb69c 100644 --- a/src/unstable/uuid.h +++ b/src/unstable/uuid.h | |||
@@ -64,8 +64,10 @@ namespace Bu | |||
64 | template<> bool __cmpHashKeys<Uuid>( | 64 | template<> bool __cmpHashKeys<Uuid>( |
65 | const Uuid &a, const Uuid &b ); | 65 | const Uuid &a, const Uuid &b ); |
66 | 66 | ||
67 | class Formatter; | ||
67 | Bu::ArchiveBase &operator>>( Bu::ArchiveBase &ar, Uuid &u ); | 68 | Bu::ArchiveBase &operator>>( Bu::ArchiveBase &ar, Uuid &u ); |
68 | Bu::ArchiveBase &operator<<( Bu::ArchiveBase &ar, const Uuid &u ); | 69 | Bu::ArchiveBase &operator<<( Bu::ArchiveBase &ar, const Uuid &u ); |
70 | Bu::Formatter &operator<<( Bu::Formatter &f, const Uuid &u ); | ||
69 | }; | 71 | }; |
70 | 72 | ||
71 | #endif | 73 | #endif |