Bug 1885489 - Part 9: Add SnapshotIterator::readObject(). r=iain
[gecko.git] / mfbt / ToString.h
bloba184d870b19f0807db6c072f3286105221117a68
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* Utilities for converting an object to a string representation. */
9 #ifndef mozilla_ToString_h
10 #define mozilla_ToString_h
12 #include <string>
13 #include <sstream>
15 namespace mozilla {
17 /**
18 * A convenience function for converting an object to a string representation.
19 * Supports any object which can be streamed to an std::ostream.
21 template <typename T>
22 std::string ToString(const T& aValue) {
23 std::ostringstream stream;
24 stream << aValue;
25 return stream.str();
28 } // namespace mozilla
30 #endif /* mozilla_ToString_h */