diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-02-24 18:21:39 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-02-26 17:50:24 +0300 |
commit | 4fcd32b536f3d29755b1fecc7e3f06be64f996ca (patch) | |
tree | 4aebf6eeb7ac4de316ddc91b92c264f252f86d44 /bpkg/rep-remove.hxx | |
parent | 12a5375f25d6a7be5a5741c728a8f9b8168761a4 (diff) |
Add support for rep-list and rep-remove, update rep-add
Diffstat (limited to 'bpkg/rep-remove.hxx')
-rw-r--r-- | bpkg/rep-remove.hxx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bpkg/rep-remove.hxx b/bpkg/rep-remove.hxx new file mode 100644 index 0000000..8bc6144 --- /dev/null +++ b/bpkg/rep-remove.hxx @@ -0,0 +1,19 @@ +// file : bpkg/rep-remove.hxx -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BPKG_REP_REMOVE_HXX +#define BPKG_REP_REMOVE_HXX + +#include <bpkg/types.hxx> +#include <bpkg/utility.hxx> + +#include <bpkg/rep-remove-options.hxx> + +namespace bpkg +{ + int + rep_remove (const rep_remove_options&, cli::scanner& args); +} + +#endif // BPKG_REP_REMOVE_HXX |