aboutsummaryrefslogtreecommitdiff
path: root/bdep/sync.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-03-12 11:17:21 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-03-12 11:17:21 +0200
commit5dcbecfd8b83f516c067780214f06321f03d1cce (patch)
tree20dcd6d7c602c4fcc7432f46336086156c929067 /bdep/sync.hxx
parent4d181c3aad97f8ee224666ce5c757036c5f610d5 (diff)
Initial sync implementation
Diffstat (limited to 'bdep/sync.hxx')
-rw-r--r--bdep/sync.hxx25
1 files changed, 25 insertions, 0 deletions
diff --git a/bdep/sync.hxx b/bdep/sync.hxx
new file mode 100644
index 0000000..e1fa7fb
--- /dev/null
+++ b/bdep/sync.hxx
@@ -0,0 +1,25 @@
+// file : bdep/sync.hxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BDEP_SYNC_HXX
+#define BDEP_SYNC_HXX
+
+#include <bdep/types.hxx>
+#include <bdep/utility.hxx>
+
+#include <bdep/project.hxx>
+#include <bdep/sync-options.hxx>
+
+namespace bdep
+{
+ void
+ cmd_sync (const common_options&,
+ const dir_path& prj,
+ const shared_ptr<configuration>&);
+
+ int
+ cmd_sync (const cmd_sync_options&, cli::scanner& args);
+}
+
+#endif // BDEP_SYNC_HXX