blob: 2e94295599b549c9b34da1fd6feaba7979f23b3f [file] [log] [blame]
// Copyright 2019 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CORE_FXGE_CFX_CONTENTSTREAM_WRITE_UTILS_H_
#define CORE_FXGE_CFX_CONTENTSTREAM_WRITE_UTILS_H_
#include <ostream>
#include "core/fxcrt/fx_coordinates.h"
std::ostream& WriteFloat(std::ostream& stream, float value);
std::ostream& operator<<(std::ostream& ar, const CFX_Matrix& matrix);
std::ostream& operator<<(std::ostream& ar, const CFX_PointF& point);
#endif // CORE_FXGE_CFX_CONTENTSTREAM_WRITE_UTILS_H_