Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
string_test_support.cpp
Go to the documentation of this file.
1// Copyright 2023 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <ostream>
6
7#include "core/fxcrt/bytestring.h"
8#include "core/fxcrt/widestring.h"
9
10namespace fxcrt {
11
12void PrintTo(const ByteString& str, std::ostream* os) {
13 *os << str;
14}
15
16void PrintTo(const WideString& str, std::ostream* os) {
17 *os << str;
18}
19
20} // namespace fxcrt
void PrintTo(const ByteString &str, std::ostream *os)
void PrintTo(const WideString &str, std::ostream *os)