diff options
Diffstat (limited to 'Swiften/StringCodecs/Hexify.h')
-rw-r--r-- | Swiften/StringCodecs/Hexify.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Swiften/StringCodecs/Hexify.h b/Swiften/StringCodecs/Hexify.h index b29864c..20027d3 100644 --- a/Swiften/StringCodecs/Hexify.h +++ b/Swiften/StringCodecs/Hexify.h @@ -1,19 +1,19 @@ /* * Copyright (c) 2010 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <Swiften/Base/API.h> #include <Swiften/Base/ByteArray.h> namespace Swift { - class SWIFTEN_API Hexify { - public: - static std::string hexify(unsigned char byte); - static std::string hexify(const ByteArray& data); - static ByteArray unhexify(const std::string& hexstring); - }; + class SWIFTEN_API Hexify { + public: + static std::string hexify(unsigned char byte); + static std::string hexify(const ByteArray& data); + static ByteArray unhexify(const std::string& hexstring); + }; } |