aboutsummaryrefslogtreecommitdiff
path: root/bpkg/help
blob: e941d40c7ff16d61f6be7bfd75d5c422f81c0f00 (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-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_HELP
#define BPKG_HELP

#include <iosfwd>

#include <bpkg/types>
#include <bpkg/help-options>

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

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

#endif // BPKG_HELP