blob: 27180fea66c896d2ddba97975e8da5516591155e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// file : bdep/status.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef BDEP_STATUS_HXX
#define BDEP_STATUS_HXX
#include <bdep/types.hxx>
#include <bdep/utility.hxx>
#include <bdep/status-options.hxx>
namespace bdep
{
int
cmd_status (const cmd_status_options&, cli::scanner& args);
}
#endif // BDEP_STATUS_HXX
|