blob: 2ff45c8910924d63f2f600bb545f9b776cb503ec (
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-2017 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
|