about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/klee/OptionCategories.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/klee/OptionCategories.h b/include/klee/OptionCategories.h
new file mode 100644
index 00000000..34783d77
--- /dev/null
+++ b/include/klee/OptionCategories.h
@@ -0,0 +1,23 @@
+//===-- OptionCategories.h --------------------------------------*- C++ -*-===//
+//
+//                     The KLEE Symbolic Virtual Machine
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+/*
+ * This header defines the option categories used in KLEE.
+ */
+
+#ifndef KLEE_SOLVERCOMMANDLINE_H
+#define KLEE_SOLVERCOMMANDLINE_H
+
+#include "llvm/Support/CommandLine.h"
+
+namespace klee {
+  extern cl::OptionCategory SolvingCat;
+}
+
+#endif