blob: 56fe9798daa67484bf7cf1858022bc381b47ce9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// file : bdep/status.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// 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
|