aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-update
blob: 4c89e66c573445fc257d6c3c80cb432df82b7525 (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-update -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_UPDATE
#define BPKG_PKG_UPDATE

#include <bpkg/types>
#include <bpkg/pkg-command>
#include <bpkg/pkg-update-options>

namespace bpkg
{
  inline void
  pkg_update (const pkg_update_options& o, cli::scanner& args)
  {
    pkg_command ("update", o, args);
  }
}

#endif // BPKG_PKG_UPDATE