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

#ifndef BPKG_PKG_CLEAN
#define BPKG_PKG_CLEAN

#include <bpkg/types>
#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