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

#ifndef BPKG_HELP
#define BPKG_HELP

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

#include <bpkg/help-options>

namespace bpkg
{
  using usage_function = cli::usage_para (ostream&, cli::usage_para);

  int
  help (const help_options&, const string& topic, usage_function* usage);
}

#endif // BPKG_HELP