summaryrefslogtreecommitdiff
path: root/chromium/printing/backend/cups_deleters.h
blob: aa905e84a4c7c3c1ceba15abed39dccb3a76ac94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 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 <cups/cups.h>
#include <memory>

namespace printing {

struct HttpDeleter {
  void operator()(http_t* http) const;
};

struct DestinationDeleter {
  void operator()(cups_dest_t* dest) const;
};

struct DestInfoDeleter {
  void operator()(cups_dinfo_t* info) const;
};

struct OptionDeleter {
  void operator()(cups_option_t* option) const;
};

using ScopedHttpPtr = std::unique_ptr<http_t, HttpDeleter>;
using ScopedDestination = std::unique_ptr<cups_dest_t, DestinationDeleter>;
using ScopedDestInfo = std::unique_ptr<cups_dinfo_t, DestInfoDeleter>;
using ScopedCupsOption = std::unique_ptr<cups_option_t, OptionDeleter>;

}  // namespace printing

#endif  // PRINTING_BACKEND_CUPS_DELETERS_H_