// Copyright 2016 The Chromium 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 PRINTING_BACKEND_CUPS_DELETERS_H_ #define PRINTING_BACKEND_CUPS_DELETERS_H_ #include #include #include "printing/printing_export.h" namespace printing { struct PRINTING_EXPORT HttpDeleter { void operator()(http_t* http) const; }; struct PRINTING_EXPORT DestinationDeleter { void operator()(cups_dest_t* dest) const; }; struct PRINTING_EXPORT DestInfoDeleter { void operator()(cups_dinfo_t* info) const; }; struct PRINTING_EXPORT OptionDeleter { void operator()(cups_option_t* option) const; }; using ScopedHttpPtr = std::unique_ptr; using ScopedDestination = std::unique_ptr; using ScopedDestInfo = std::unique_ptr; using ScopedCupsOption = std::unique_ptr; } // namespace printing #endif // PRINTING_BACKEND_CUPS_DELETERS_H_