aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-clean
blob: 0bc5a609076a9fcd844072d7448ed170577e27e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// file      : bpkg/pkg-clean -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_CLEAN
#define BPKG_PKG_CLEAN

#include <bpkg/types>
#include <bpkg/utility>

#include <bpkg/pkg-command>
#include <bpkg/pkg-clean-options>

namespace bpkg
{
  inline int
  pkg_clean (const pkg_clean_options& o, cli::scanner& args)
  {
    return pkg_command ("clean", o, args);
  }
}

#endif // BPKG_PKG_CLEAN