chromium/pdf/loader/range_set.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Defines a set of geometric ranges, and standard operations on it.

#ifndef PDF_LOADER_RANGE_SET_H_
#define PDF_LOADER_RANGE_SET_H_

#include <ostream>
#include <set>
#include <string>

#include "ui/gfx/range/range.h"

namespace chrome_pdf {

class RangeSet {};

}  // namespace chrome_pdf

std::ostream& operator<<(std::ostream& os,
                         const chrome_pdf::RangeSet& range_set);

#endif  // PDF_LOADER_RANGE_SET_H_