aboutsummaryrefslogtreecommitdiff
path: root/bpkg/options-types
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/options-types')
-rw-r--r--bpkg/options-types18
1 files changed, 18 insertions, 0 deletions
diff --git a/bpkg/options-types b/bpkg/options-types
new file mode 100644
index 0000000..88e6b67
--- /dev/null
+++ b/bpkg/options-types
@@ -0,0 +1,18 @@
+// file : bpkg/options-types -*- C++ -*-
+// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_OPTIONS_TYPES
+#define BPKG_OPTIONS_TYPES
+
+namespace bpkg
+{
+ enum class auth
+ {
+ none,
+ remote,
+ all
+ };
+}
+
+#endif // BPKG_OPTIONS_TYPES