// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PRINTING_PAGE_RANGE_H_ #define PRINTING_PAGE_RANGE_H_ #include <stdint.h> #include <limits> #include <vector> #include "base/component_export.h" namespace printing { struct PageRange; PageRanges; // Print range is inclusive. To select one page, set from == to. struct COMPONENT_EXPORT(PRINTING_SETTINGS) PageRange { … }; } // namespace printing #endif // PRINTING_PAGE_RANGE_H_